composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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": ">=7.0.0",
  19. "fzaninotto/faker": "~1.8",
  20. "illuminate/routing": "5.5.* || 5.6.* || 5.7.*",
  21. "illuminate/support": "5.5.* 5.6.* || 5.7.*",
  22. "illuminate/console": "5.5.* 5.6.* || 5.7.*",
  23. "mpociot/documentarian": "^0.2.0",
  24. "mpociot/reflection-docblock": "^1.0",
  25. "ramsey/uuid": "^3.8"
  26. },
  27. "require-dev": {
  28. "orchestra/testbench": "3.5.* || 3.6.* || 3.7.*",
  29. "phpunit/phpunit": "^6.0.0 || ^7.4.0",
  30. "dingo/api": "2.0.0-alpha1",
  31. "mockery/mockery": "^1.2.0"
  32. },
  33. "autoload": {
  34. "psr-0": {
  35. "Mpociot\\ApiDoc": "src/"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "Mpociot\\ApiDoc\\Tests\\": "tests/"
  41. }
  42. },
  43. "scripts": {
  44. "test-ci": "phpunit --coverage-clover=coverage.xml"
  45. },
  46. "extra": {
  47. "laravel": {
  48. "providers": [
  49. "Mpociot\\ApiDoc\\ApiDocGeneratorServiceProvider"
  50. ]
  51. }
  52. }
  53. }