composer.json 2.4 KB

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