composer.json 2.4 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. "email": "hello@shalvah.me"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.4",
  20. "ext-fileinfo": "*",
  21. "ext-json": "*",
  22. "ext-pdo": "*",
  23. "erusev/parsedown": "^1.7",
  24. "fakerphp/faker": "^1.9.1",
  25. "illuminate/console": "^6.0|^7.0|^8.0",
  26. "illuminate/routing": "^6.0|^7.0|^8.0",
  27. "illuminate/support": "^6.0|^7.0|^8.0",
  28. "league/flysystem": "^1.0",
  29. "mpociot/reflection-docblock": "^1.0.1",
  30. "nikic/php-parser": "^4.10",
  31. "nunomaduro/collision": "^3.0|^4.0|^5.0",
  32. "ramsey/uuid": "^3.8|^4.0",
  33. "shalvah/clara": "^3.0.2",
  34. "shalvah/upgrader": "0.*",
  35. "spatie/data-transfer-object": "^2.6|^3.0",
  36. "symfony/var-exporter": "^4.0|^5.0",
  37. "symfony/yaml": "^4.0|^5.0"
  38. },
  39. "require-dev": {
  40. "brianium/paratest": "^6.0",
  41. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  42. "laravel/legacy-factories": "^1.0.4",
  43. "laravel/lumen-framework": "^6.0|^7.0|^8.0",
  44. "league/fractal": "^0.19.0",
  45. "nikic/fast-route": "^1.3",
  46. "orchestra/testbench": "^4.0|^5.0|^6.0",
  47. "phpstan/phpstan": "^0.12.90",
  48. "phpunit/phpunit": "^9.0",
  49. "symfony/css-selector": "^5.3",
  50. "symfony/dom-crawler": "^5.3"
  51. },
  52. "suggest": {
  53. "league/fractal": "Required for transformers support"
  54. },
  55. "autoload": {
  56. "psr-4": {
  57. "Knuckles\\Scribe\\": "src/",
  58. "Knuckles\\Camel\\": "camel/"
  59. }
  60. },
  61. "autoload-dev": {
  62. "psr-4": {
  63. "Knuckles\\Scribe\\Tests\\": "tests/"
  64. }
  65. },
  66. "scripts": {
  67. "lint": "phpstan analyse -c ./phpstan.neon src camel --memory-limit 1G",
  68. "test": "phpunit --stop-on-failure --exclude-group dingo",
  69. "test-ci": "phpunit --exclude-group dingo",
  70. "test-parallel": "paratest -p16 --stop-on-failure --exclude-group dingo",
  71. "test-parallel-ci": "paratest -p16 --exclude-group dingo"
  72. },
  73. "extra": {
  74. "laravel": {
  75. "providers": [
  76. "Knuckles\\Scribe\\ScribeServiceProvider"
  77. ]
  78. }
  79. },
  80. "config": {
  81. "preferred-install": "dist",
  82. "sort-packages": true,
  83. "process-timeout": 600
  84. },
  85. "replace": {
  86. "mpociot/laravel-apidoc-generator": "*"
  87. },
  88. "funding": [
  89. {
  90. "type": "patreon",
  91. "url": "https://patreon.com/shalvah"
  92. }
  93. ]
  94. }