composer.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.2.0",
  19. "fzaninotto/faker": "^1.8",
  20. "illuminate/routing": "^5.7|^6.0",
  21. "illuminate/support": "^5.7|^6.0",
  22. "illuminate/console": "^5.7|^6.0",
  23. "mpociot/documentarian": "^0.3.0",
  24. "mpociot/reflection-docblock": "^1.0.1",
  25. "ramsey/uuid": "^3.8",
  26. "symfony/var-exporter": "^4.0",
  27. "league/flysystem": "^1.0",
  28. "nunomaduro/collision": "^3.0"
  29. },
  30. "require-dev": {
  31. "orchestra/testbench": "^3.7.0 || ^4.0",
  32. "phpunit/phpunit": "^7.5.0",
  33. "dingo/api": "^2.3.0",
  34. "mockery/mockery": "^1.2.0",
  35. "league/fractal": "^0.17.0",
  36. "phpstan/phpstan": "^0.11.15"
  37. },
  38. "suggest": {
  39. "league/fractal": "Required for transformers support"
  40. },
  41. "autoload": {
  42. "psr-4": {
  43. "Mpociot\\ApiDoc\\": "src/"
  44. }
  45. },
  46. "autoload-dev": {
  47. "psr-4": {
  48. "Mpociot\\ApiDoc\\Tests\\": "tests/"
  49. }
  50. },
  51. "scripts": {
  52. "lint": "phpstan analyse -c ./phpstan.neon src",
  53. "test": "phpunit --stop-on-failure",
  54. "test-ci": "phpunit"
  55. },
  56. "extra": {
  57. "laravel": {
  58. "providers": [
  59. "Mpociot\\ApiDoc\\ApiDocGeneratorServiceProvider"
  60. ]
  61. },
  62. "branch-alias": {
  63. "dev-v4": "4.x-dev"
  64. }
  65. }
  66. }