dingo.composer.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.4.0",
  26. "mpociot/reflection-docblock": "^1.0.1",
  27. "nunomaduro/collision": "^3.0|^4.0",
  28. "ramsey/uuid": "^3.8|4.0",
  29. "symfony/var-exporter": "^4.0|^5.0"
  30. },
  31. "require-dev": {
  32. "dingo/api": "^2.7|^3.0",
  33. "dms/phpunit-arraysubset-asserts": "^0.1.0",
  34. "league/fractal": "^0.19.0",
  35. "orchestra/testbench": "^3.7|^4.0|^5.0",
  36. "phpstan/phpstan": "^0.11.15",
  37. "phpunit/phpunit": "^8.0"
  38. },
  39. "suggest": {
  40. "league/fractal": "Required for transformers support"
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "Mpociot\\ApiDoc\\": "src/"
  45. }
  46. },
  47. "autoload-dev": {
  48. "psr-4": {
  49. "Mpociot\\ApiDoc\\Tests\\": "tests/"
  50. }
  51. },
  52. "scripts": {
  53. "lint": "phpstan analyse -c ./phpstan.neon src",
  54. "test": "phpunit --stop-on-failure --group dingo",
  55. "test-ci": "phpunit --group dingo"
  56. },
  57. "extra": {
  58. "laravel": {
  59. "providers": [
  60. "Mpociot\\ApiDoc\\ApiDocGeneratorServiceProvider"
  61. ]
  62. },
  63. "branch-alias": {
  64. "dev-v4": "4.x-dev"
  65. }
  66. },
  67. "config": {
  68. "preferred-install": "dist",
  69. "sort-packages": true
  70. }
  71. }