composer.dingo.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. "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. "dingo/api": "^2.3|^3.0",
  24. "erusev/parsedown": "^1.7",
  25. "fakerphp/faker": "^1.9.1",
  26. "illuminate/console": "^6.0|^7.0|^8.0",
  27. "illuminate/routing": "^6.0|^7.0|^8.0",
  28. "illuminate/support": "^6.0|^7.0|^8.0",
  29. "league/flysystem": "^1.0",
  30. "mpociot/reflection-docblock": "^1.0.1",
  31. "nikic/php-parser": "^4.10",
  32. "nunomaduro/collision": "^3.0|^4.0|^5.0",
  33. "ramsey/uuid": "^3.8|^4.0",
  34. "shalvah/clara": "^3.0.2",
  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. "league/fractal": "^0.19.0",
  43. "laravel/legacy-factories": "^1.0.4",
  44. "laravel/lumen-framework": "^6.0|^7.0|^8.0",
  45. "orchestra/testbench": "^4.0|^5.0|^6.0",
  46. "phpstan/phpstan": "^0.12.90",
  47. "phpunit/phpunit": "^9.0",
  48. "symfony/css-selector": "^5.3",
  49. "symfony/dom-crawler": "^5.3"
  50. },
  51. "suggest": {
  52. "league/fractal": "Required for transformers support"
  53. },
  54. "autoload": {
  55. "psr-4": {
  56. "Knuckles\\Scribe\\": "src/",
  57. "Knuckles\\Camel\\": "camel/"
  58. }
  59. },
  60. "autoload-dev": {
  61. "psr-4": {
  62. "Knuckles\\Scribe\\Tests\\": "tests/"
  63. }
  64. },
  65. "scripts": {
  66. "lint": "phpstan analyse -c ./phpstan.neon src camel --memory-limit 1G",
  67. "test": "phpunit --stop-on-failure --group dingo",
  68. "test-ci": "phpunit --group dingo",
  69. "test-parallel": "paratest -p16 --stop-on-failure --group dingo tests",
  70. "test-parallel-ci": "paratest -p16 --group dingo tests"
  71. },
  72. "extra": {
  73. "laravel": {
  74. "providers": [
  75. "Knuckles\\Scribe\\ScribeServiceProvider"
  76. ]
  77. }
  78. },
  79. "config": {
  80. "preferred-install": "dist",
  81. "sort-packages": true
  82. },
  83. "replace": {
  84. "mpociot/laravel-apidoc-generator": "*"
  85. },
  86. "funding": [
  87. {
  88. "type": "patreon",
  89. "url": "https://patreon.com/shalvah"
  90. }
  91. ]
  92. }