composer.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "knuckleswtf/scribe",
  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. "knuckleswtf/pastel": "^1.1",
  25. "league/flysystem": "^1.0",
  26. "mpociot/reflection-docblock": "^1.0.1",
  27. "nunomaduro/collision": "^3.0|^4.0",
  28. "ramsey/uuid": "^3.8|^4.0",
  29. "shalvah/clara": "^2.5",
  30. "symfony/var-exporter": "^4.0|^5.0"
  31. },
  32. "require-dev": {
  33. "dms/phpunit-arraysubset-asserts": "^0.1.0",
  34. "laravel/lumen-framework": "^5.7|^6.0|^7.0",
  35. "league/fractal": "^0.19.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 --exclude-group dingo",
  56. "test-ci": "phpunit --exclude-group dingo"
  57. },
  58. "extra": {
  59. "laravel": {
  60. "providers": [
  61. "Mpociot\\ApiDoc\\ApiDocGeneratorServiceProvider"
  62. ]
  63. }
  64. },
  65. "config": {
  66. "preferred-install": "dist",
  67. "sort-packages": true
  68. },
  69. "replace": {
  70. "mpociot/laravel-apidoc-generator": "*"
  71. },
  72. "funding": [
  73. {
  74. "type": "patreon",
  75. "url": "https://patreon.com/shalvah"
  76. }
  77. ]
  78. }