composer.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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.2.5",
  20. "ext-fileinfo": "*",
  21. "ext-json": "*",
  22. "erusev/parsedown": "^1.7.4",
  23. "fzaninotto/faker": "^1.9.1",
  24. "illuminate/console": "5.8.*|^6.0|^7.0|^8.0",
  25. "illuminate/routing": "5.8.*|^6.0|^7.0|^8.0",
  26. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  27. "knuckleswtf/pastel": "^1.3.5",
  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. "symfony/var-exporter": "^4.0|^5.0",
  34. "symfony/yaml": "^4.0|^5.0"
  35. },
  36. "require-dev": {
  37. "brianium/paratest": "^4.0",
  38. "dms/phpunit-arraysubset-asserts": "^0.1.0",
  39. "laravel/legacy-factories": "^1.0.4",
  40. "laravel/lumen-framework": "5.8.*|^6.0|^7.0|^8.0",
  41. "league/fractal": "^0.19.0",
  42. "orchestra/testbench": "^3.7|^4.0|^5.0|^6.0",
  43. "phpstan/phpstan": "^0.12.19",
  44. "phpunit/phpunit": "^8.0|^9.0"
  45. },
  46. "suggest": {
  47. "league/fractal": "Required for transformers support"
  48. },
  49. "autoload": {
  50. "psr-4": {
  51. "Knuckles\\Scribe\\": "src/"
  52. }
  53. },
  54. "autoload-dev": {
  55. "psr-4": {
  56. "Knuckles\\Scribe\\Tests\\": "tests/"
  57. }
  58. },
  59. "scripts": {
  60. "lint": "phpstan analyse -c ./phpstan.neon src",
  61. "test": "phpunit --stop-on-failure --exclude-group dingo",
  62. "test-ci": "phpunit --exclude-group dingo",
  63. "test-parallel": "paratest -p4 --stop-on-failure --parallel-suite --exclude-group dingo tests",
  64. "test-parallel-ci": "paratest -p4 --parallel-suite --exclude-group dingo tests"
  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. },
  78. "replace": {
  79. "mpociot/laravel-apidoc-generator": "*"
  80. },
  81. "funding": [
  82. {
  83. "type": "patreon",
  84. "url": "https://patreon.com/shalvah"
  85. }
  86. ]
  87. }