composer.dingo.json 2.9 KB

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