composer.json 2.4 KB

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