composer.json 2.0 KB

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