composer.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. }
  15. ],
  16. "require": {
  17. "php": ">=8.1",
  18. "ext-fileinfo": "*",
  19. "ext-json": "*",
  20. "ext-pdo": "*",
  21. "erusev/parsedown": "1.7.4",
  22. "fakerphp/faker": "^1.9.1",
  23. "illuminate/console": "^8.0|^9.0|^10.0|^11.0",
  24. "illuminate/routing": "^8.0|^9.0|^10.0|^11.0",
  25. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  26. "league/flysystem": "^1.1.4|^2.1.1|^3.0",
  27. "mpociot/reflection-docblock": "^1.0.1",
  28. "nikic/php-parser": "^5.0",
  29. "nunomaduro/collision": "^5.10|^6.0|^7.0|^8.0",
  30. "ramsey/uuid": "^4.2.2",
  31. "shalvah/clara": "^3.1.0",
  32. "shalvah/upgrader": ">=0.6.0",
  33. "spatie/data-transfer-object": "^2.6|^3.0",
  34. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  35. "symfony/yaml": "^5.4|^6.0|^7.0"
  36. },
  37. "require-dev": {
  38. "brianium/paratest": "^6.0",
  39. "dms/phpunit-arraysubset-asserts": "^0.4",
  40. "laravel/legacy-factories": "^1.3.0",
  41. "league/fractal": "^0.20",
  42. "nikic/fast-route": "^1.3",
  43. "orchestra/testbench": "^6.0|^7.0|^8.0",
  44. "pestphp/pest": "^1.21",
  45. "phpstan/phpstan": "^1.0",
  46. "phpunit/phpunit": "^9.0|^10.0",
  47. "symfony/css-selector": "^5.4|^6.0",
  48. "symfony/dom-crawler": "^5.4|^6.0"
  49. },
  50. "autoload": {
  51. "psr-4": {
  52. "Knuckles\\Scribe\\": "src/",
  53. "Knuckles\\Camel\\": "camel/"
  54. }
  55. },
  56. "autoload-dev": {
  57. "psr-4": {
  58. "Knuckles\\Scribe\\Tests\\": "tests/"
  59. }
  60. },
  61. "scripts": {
  62. "lint": "phpstan analyse -c ./phpstan.neon src camel --memory-limit 1G",
  63. "test": "pest --stop-on-failure --colors",
  64. "test-ci": "pest --coverage --min=80",
  65. "test-parallel": "paratest -p16 --stop-on-failure",
  66. "test-parallel-ci": "paratest -p16"
  67. },
  68. "extra": {
  69. "laravel": {
  70. "providers": [
  71. "Knuckles\\Scribe\\ScribeServiceProvider"
  72. ]
  73. }
  74. },
  75. "config": {
  76. "preferred-install": "dist",
  77. "sort-packages": true,
  78. "process-timeout": 600,
  79. "allow-plugins": {
  80. "pestphp/pest-plugin": true
  81. }
  82. },
  83. "replace": {
  84. "mpociot/laravel-apidoc-generator": "*"
  85. },
  86. "funding": [
  87. {
  88. "type": "patreon",
  89. "url": "https://patreon.com/shalvah"
  90. }
  91. ]
  92. }