composer.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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.* || 5.8.*",
  21. "illuminate/support": "5.5.* || 5.6.* || 5.7.* || 5.8.*",
  22. "illuminate/console": "5.5.* || 5.6.* || 5.7.* || 5.8.*",
  23. "mpociot/documentarian": "^0.2.0",
  24. "mpociot/reflection-docblock": "^1.0.1",
  25. "ramsey/uuid": "^3.8",
  26. "league/flysystem": "^1.0"
  27. },
  28. "require-dev": {
  29. "orchestra/testbench": "3.5.* || 3.6.* || 3.7.*",
  30. "phpunit/phpunit": "^6.0.0 || ^7.4.0",
  31. "dingo/api": "2.0.0-alpha1",
  32. "mockery/mockery": "^1.2.0",
  33. "league/fractal": "^0.17.0",
  34. "phpstan/phpstan": "^0.11.15"
  35. },
  36. "suggest": {
  37. "league/fractal": "Required for transformers support",
  38. "nunomaduro/collision": "For better reporting of errors that are thrpwn when generating docs"
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Mpociot\\ApiDoc\\": "src/"
  43. }
  44. },
  45. "autoload-dev": {
  46. "psr-4": {
  47. "Mpociot\\ApiDoc\\Tests\\": "tests/"
  48. }
  49. },
  50. "scripts": {
  51. "lint": "phpstan analyse -c ./phpstan.neon src",
  52. "test": "phpunit --stop-on-failure",
  53. "test-ci": "phpunit --coverage-clover=coverage.xml"
  54. },
  55. "extra": {
  56. "laravel": {
  57. "providers": [
  58. "Mpociot\\ApiDoc\\ApiDocGeneratorServiceProvider"
  59. ]
  60. }
  61. }
  62. }