composer.lowest.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. ],
  10. "homepage": "http://github.com/knuckleswtf/scribe",
  11. "authors": [
  12. {
  13. "name": "Shalvah",
  14. "email": "hello@shalvah.me"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=8.1",
  19. "ext-fileinfo": "*",
  20. "ext-json": "*",
  21. "ext-pdo": "*",
  22. "erusev/parsedown": "1.7.4",
  23. "fakerphp/faker": "^1.23.1",
  24. "laravel/framework": "^9.0",
  25. "league/flysystem": "^3.0",
  26. "mpociot/reflection-docblock": "^1.0.1",
  27. "nikic/php-parser": "^5.0",
  28. "nunomaduro/collision": "^6.0",
  29. "ramsey/uuid": "^4.2.2",
  30. "shalvah/clara": "^3.1.0",
  31. "shalvah/upgrader": ">=0.6.0",
  32. "spatie/data-transfer-object": "^2.6|^3.0",
  33. "symfony/var-exporter": "^6.0",
  34. "symfony/yaml": "^6.0"
  35. },
  36. "require-dev": {
  37. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  38. "laravel/legacy-factories": "^1.3.0",
  39. "league/fractal": "^0.20.0",
  40. "nikic/fast-route": "^1.3",
  41. "orchestra/testbench": "^7.0",
  42. "pestphp/pest": "^1.21",
  43. "phpunit/phpunit": "^9.0|^10.0",
  44. "symfony/css-selector": "^6.0",
  45. "symfony/dom-crawler": "^6.0"
  46. },
  47. "autoload": {
  48. "psr-4": {
  49. "Knuckles\\Scribe\\": "src/",
  50. "Knuckles\\Camel\\": "camel/"
  51. },
  52. "files": [
  53. "src/Config/helpers.php"
  54. ]
  55. },
  56. "autoload-dev": {
  57. "psr-4": {
  58. "Knuckles\\Scribe\\Tests\\": "tests/"
  59. }
  60. },
  61. "scripts": {
  62. "lint": "phpstan analyse -c ./phpstan.neon src camel --memory-limit 1G",
  63. "test": "phpunit --stop-on-failure",
  64. "test-ci": "pest --coverage --min=80"
  65. },
  66. "extra": {
  67. "laravel": {
  68. "providers": [
  69. "Knuckles\\Scribe\\ScribeServiceProvider"
  70. ]
  71. }
  72. },
  73. "config": {
  74. "preferred-install": "dist",
  75. "sort-packages": true,
  76. "process-timeout": 600,
  77. "allow-plugins": {
  78. "pestphp/pest-plugin": true
  79. },
  80. "platform": {
  81. "php": "8.1"
  82. }
  83. },
  84. "replace": {
  85. "mpociot/laravel-apidoc-generator": "*"
  86. },
  87. "funding": [
  88. {
  89. "type": "patreon",
  90. "url": "https://patreon.com/shalvah"
  91. }
  92. ]
  93. }