composer.lowest.json 2.8 KB

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