composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "mpociot/laravel-apidoc-generator",
  3. "license": "MIT",
  4. "description": "Generate beautiful API documentation from your Laravel application",
  5. "keywords": [
  6. "API",
  7. "Documentation",
  8. "Laravel"
  9. ],
  10. "homepage": "http://github.com/mpociot/laravel-apidoc-generator",
  11. "authors": [
  12. {
  13. "name": "Marcel Pociot",
  14. "email": "m.pociot@gmail.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=5.5.0",
  19. "fzaninotto/faker": "~1.0",
  20. "laravel/framework": "~5.4",
  21. "mpociot/documentarian": "^0.2.0",
  22. "mpociot/reflection-docblock": "^1.0",
  23. "ramsey/uuid": "^3.0"
  24. },
  25. "require-dev": {
  26. "orchestra/testbench": "~3.0",
  27. "phpunit/phpunit": "~4.0 || ~5.0",
  28. "dingo/api": "1.0.*@dev",
  29. "mockery/mockery": "^0.9.5"
  30. },
  31. "autoload": {
  32. "psr-0": {
  33. "Mpociot\\ApiDoc": "src/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "Mpociot\\ApiDoc\\Tests\\": "tests/"
  39. }
  40. }
  41. }