composer.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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": ">=7.2.5",
  19. "ext-json": "*",
  20. "fzaninotto/faker": "^1.9.1",
  21. "illuminate/console": "^5.8|^6.0|^7.0",
  22. "illuminate/routing": "^5.8|^6.0|^7.0",
  23. "illuminate/support": "^5.8|^6.0|^7.0",
  24. "knuckleswtf/pastel": "^1.3.3",
  25. "league/flysystem": "^1.0",
  26. "mpociot/reflection-docblock": "^1.0.1",
  27. "nunomaduro/collision": "^3.0|^4.0",
  28. "ramsey/uuid": "^3.8|^4.0",
  29. "shalvah/clara": "^2.6",
  30. "symfony/var-exporter": "^4.0|^5.0"
  31. },
  32. "require-dev": {
  33. "brianium/paratest": "^4.0",
  34. "dms/phpunit-arraysubset-asserts": "^0.1.0",
  35. "laravel/lumen-framework": "^5.7|^6.0|^7.0",
  36. "league/fractal": "^0.19.0",
  37. "orchestra/testbench": "^3.7|^4.0|^5.0",
  38. "phpstan/phpstan": "^0.12.19",
  39. "phpunit/phpunit": "^8.0"
  40. },
  41. "suggest": {
  42. "league/fractal": "Required for transformers support"
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Knuckles\\Scribe\\": "src/"
  47. }
  48. },
  49. "autoload-dev": {
  50. "psr-4": {
  51. "Knuckles\\Scribe\\Tests\\": "tests/"
  52. }
  53. },
  54. "scripts": {
  55. "lint": "phpstan analyse -c ./phpstan.neon src",
  56. "test": "phpunit --stop-on-failure --exclude-group dingo",
  57. "test-ci": "phpunit --exclude-group dingo",
  58. "test-parallel": "paratest -p3 --stop-on-failure --parallel-suite --exclude-group dingo tests",
  59. "test-parallel-ci": "paratest -p3 --parallel-suite --exclude-group dingo tests"
  60. },
  61. "extra": {
  62. "laravel": {
  63. "providers": [
  64. "Knuckles\\Scribe\\ScribeServiceProvider"
  65. ]
  66. }
  67. },
  68. "config": {
  69. "preferred-install": "dist",
  70. "sort-packages": true,
  71. "process-timeout": 600
  72. },
  73. "replace": {
  74. "mpociot/laravel-apidoc-generator": "*"
  75. },
  76. "funding": [
  77. {
  78. "type": "patreon",
  79. "url": "https://patreon.com/shalvah"
  80. }
  81. ]
  82. }