composer.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "knuckleswtf/scribe",
  3. "license": "MIT",
  4. "description": "Generate API documentation for humans from your Laravel codebase.✍",
  5. "keywords": [
  6. "API",
  7. "documentation",
  8. "laravel",
  9. "dingo"
  10. ],
  11. "homepage": "http://github.com/knuckleswtf/scribe",
  12. "authors": [
  13. {
  14. "name": "Shalvah",
  15. "email": "hello@shalvah.me"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.2.5",
  20. "ext-fileinfo": "*",
  21. "ext-json": "*",
  22. "erusev/parsedown": "^1.7.4",
  23. "fzaninotto/faker": "^1.9.1",
  24. "illuminate/console": "^8.0",
  25. "illuminate/routing": "^8.0",
  26. "illuminate/support": "^8.0",
  27. "knuckleswtf/pastel": "^1.3.5",
  28. "league/flysystem": "^1.0",
  29. "mpociot/reflection-docblock": "^1.0.1",
  30. "nunomaduro/collision": "^3.0|^4.0|^5.0",
  31. "ramsey/uuid": "^3.8|^4.0",
  32. "shalvah/clara": "^2.6",
  33. "symfony/var-exporter": "^4.0|^5.0",
  34. "symfony/yaml": "^4.0|^5.0"
  35. },
  36. "require-dev": {
  37. "brianium/paratest": "^4.0",
  38. "dms/phpunit-arraysubset-asserts": "^0.1.0",
  39. "laravel/lumen-framework": "^5.8|^6.0|^7.0|^8.0",
  40. "league/fractal": "^0.19.0",
  41. "orchestra/testbench": "^3.7|^4.0|^5.0|^6.0",
  42. "phpstan/phpstan": "^0.12.19",
  43. "phpunit/phpunit": "^8.0|^9.0"
  44. },
  45. "suggest": {
  46. "league/fractal": "Required for transformers support"
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Knuckles\\Scribe\\": "src/"
  51. }
  52. },
  53. "autoload-dev": {
  54. "psr-4": {
  55. "Knuckles\\Scribe\\Tests\\": "tests/"
  56. }
  57. },
  58. "scripts": {
  59. "lint": "phpstan analyse -c ./phpstan.neon src",
  60. "test": "phpunit --stop-on-failure --exclude-group dingo",
  61. "test-ci": "phpunit --exclude-group dingo",
  62. "test-parallel": "paratest -p4 --stop-on-failure --parallel-suite --exclude-group dingo tests",
  63. "test-parallel-ci": "paratest -p4 --parallel-suite --exclude-group dingo tests"
  64. },
  65. "extra": {
  66. "laravel": {
  67. "providers": [
  68. "Knuckles\\Scribe\\ScribeServiceProvider"
  69. ]
  70. }
  71. },
  72. "config": {
  73. "preferred-install": "dist",
  74. "sort-packages": true,
  75. "process-timeout": 600
  76. },
  77. "replace": {
  78. "mpociot/laravel-apidoc-generator": "*"
  79. },
  80. "funding": [
  81. {
  82. "type": "patreon",
  83. "url": "https://patreon.com/shalvah"
  84. }
  85. ]
  86. }