composer.json 2.8 KB

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