dingo.composer.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. "mockery/mockery": "^1.2.0",
  36. "orchestra/testbench": "^3.7|^4.0|^5.0",
  37. "phpstan/phpstan": "^0.11.15",
  38. "phpunit/phpunit": "^8.0"
  39. },
  40. "suggest": {
  41. "league/fractal": "Required for transformers support"
  42. },
  43. "autoload": {
  44. "psr-4": {
  45. "Mpociot\\ApiDoc\\": "src/"
  46. }
  47. },
  48. "autoload-dev": {
  49. "psr-4": {
  50. "Mpociot\\ApiDoc\\Tests\\": "tests/"
  51. }
  52. },
  53. "scripts": {
  54. "lint": "phpstan analyse -c ./phpstan.neon src",
  55. "test": "phpunit --stop-on-failure",
  56. "test-ci": "phpunit"
  57. },
  58. "extra": {
  59. "laravel": {
  60. "providers": [
  61. "Mpociot\\ApiDoc\\ApiDocGeneratorServiceProvider"
  62. ]
  63. },
  64. "branch-alias": {
  65. "dev-v4": "4.x-dev"
  66. }
  67. },
  68. "config": {
  69. "preferred-install": "dist",
  70. "sort-packages": true
  71. }
  72. }