composer.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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/knuckleswtf/scribe",
  11. "authors": [
  12. {
  13. "name": "Shalvah",
  14. "email": "hello@shalvah.me"
  15. }
  16. ],
  17. "repositories": [
  18. {
  19. "type": "path",
  20. "url": "../pastel",
  21. "options": {
  22. "symlink": true
  23. }
  24. }
  25. ],
  26. "require": {
  27. "php": ">=7.2.0",
  28. "ext-json": "*",
  29. "fzaninotto/faker": "^1.8",
  30. "illuminate/console": "^5.7|^6.0|^7.0",
  31. "illuminate/routing": "^5.7|^6.0|^7.0",
  32. "illuminate/support": "^5.7|^6.0|^7.0",
  33. "knuckleswtf/pastel": "dev-master",
  34. "league/flysystem": "^1.0",
  35. "mpociot/reflection-docblock": "^1.0.1",
  36. "nunomaduro/collision": "^3.0|^4.0",
  37. "ramsey/uuid": "^3.8|^4.0",
  38. "shalvah/clara": "^2.6",
  39. "symfony/var-exporter": "^4.0|^5.0"
  40. },
  41. "require-dev": {
  42. "brianium/paratest": "^4.0",
  43. "dms/phpunit-arraysubset-asserts": "^0.1.0",
  44. "laravel/lumen-framework": "^5.7|^6.0|^7.0",
  45. "league/fractal": "^0.19.0",
  46. "orchestra/testbench": "^3.7|^4.0|^5.0",
  47. "phpstan/phpstan": "^0.12.19",
  48. "phpunit/phpunit": "^8.0"
  49. },
  50. "suggest": {
  51. "league/fractal": "Required for transformers support"
  52. },
  53. "autoload": {
  54. "psr-4": {
  55. "Knuckles\\Scribe\\": "src/"
  56. }
  57. },
  58. "autoload-dev": {
  59. "psr-4": {
  60. "Knuckles\\Scribe\\Tests\\": "tests/"
  61. }
  62. },
  63. "scripts": {
  64. "lint": "phpstan analyse -c ./phpstan.neon src",
  65. "test": "phpunit --stop-on-failure --exclude-group dingo",
  66. "test-ci": "phpunit --exclude-group dingo",
  67. "test-parallel": "paratest -p3 --stop-on-failure --parallel-suite --exclude-group dingo tests",
  68. "test-parallel-ci": "paratest -p3 --parallel-suite --exclude-group dingo tests"
  69. },
  70. "extra": {
  71. "laravel": {
  72. "providers": [
  73. "Knuckles\\Scribe\\ScribeServiceProvider"
  74. ]
  75. }
  76. },
  77. "config": {
  78. "preferred-install": "dist",
  79. "sort-packages": true
  80. },
  81. "replace": {
  82. "mpociot/laravel-apidoc-generator": "*"
  83. },
  84. "funding": [
  85. {
  86. "type": "patreon",
  87. "url": "https://patreon.com/shalvah"
  88. }
  89. ]
  90. }