composer.dingo.json 2.4 KB

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