composer.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. "nunomaduro/collision": "^3.0|^4.0|^5.0",
  31. "ramsey/uuid": "^3.8|^4.0",
  32. "shalvah/clara": "^2.6",
  33. "spatie/data-transfer-object": "^2.6",
  34. "symfony/var-exporter": "^4.0|^5.0",
  35. "symfony/yaml": "^4.0|^5.0"
  36. },
  37. "require-dev": {
  38. "brianium/paratest": "^6.0",
  39. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  40. "laravel/legacy-factories": "^1.0.4",
  41. "laravel/lumen-framework": "^6.0|^7.0|^8.0",
  42. "league/fractal": "^0.19.0",
  43. "nikic/fast-route": "^1.3",
  44. "orchestra/testbench": "^4.0|^5.0|^6.0",
  45. "phpstan/phpstan": "^0.12.19",
  46. "phpunit/phpunit": "^9.0"
  47. },
  48. "suggest": {
  49. "league/fractal": "Required for transformers support"
  50. },
  51. "autoload": {
  52. "psr-4": {
  53. "Knuckles\\Scribe\\": "src/",
  54. "Knuckles\\Camel\\": "camel/"
  55. }
  56. },
  57. "autoload-dev": {
  58. "psr-4": {
  59. "Knuckles\\Scribe\\Tests\\": "tests/"
  60. }
  61. },
  62. "scripts": {
  63. "lint": "phpstan analyse -c ./phpstan.neon src",
  64. "test": "phpunit --no-coverage --stop-on-failure --exclude-group dingo",
  65. "test-ci": "phpunit --no-coverage --exclude-group dingo",
  66. "test-parallel": "paratest -p16 --stop-on-failure --no-coverage --exclude-group dingo",
  67. "test-parallel-ci": "paratest -p16 --no-coverage --exclude-group dingo"
  68. },
  69. "extra": {
  70. "laravel": {
  71. "providers": [
  72. "Knuckles\\Scribe\\ScribeServiceProvider"
  73. ]
  74. }
  75. },
  76. "config": {
  77. "preferred-install": "dist",
  78. "sort-packages": true,
  79. "process-timeout": 600
  80. },
  81. "replace": {
  82. "mpociot/laravel-apidoc-generator": "*"
  83. },
  84. "funding": [
  85. {
  86. "type": "patreon",
  87. "url": "https://patreon.com/shalvah"
  88. }
  89. ]
  90. }