composer.dingo.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "knuckleswtf/scribe",
  3. "license": "MIT",
  4. "description": "Generate beautiful API documentation from your Laravel application",
  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.0",
  19. "ext-json": "*",
  20. "fzaninotto/faker": "^1.8",
  21. "illuminate/console": "^5.7|^6.0|^7.0",
  22. "illuminate/routing": "^5.7|^6.0|^7.0",
  23. "illuminate/support": "^5.7|^6.0|^7.0",
  24. "knuckleswtf/pastel": "dev-master",
  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. "dingo/api": "^2.3",
  34. "dms/phpunit-arraysubset-asserts": "^0.1.0",
  35. "brianium/paratest": "^4.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 --group dingo",
  57. "test-ci": "phpunit --group dingo",
  58. "test-parallel": "paratest -p3 --stop-on-failure --parallel-suite --group dingo tests",
  59. "test-parallel-ci": "paratest -p3 --parallel-suite --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. },
  72. "replace": {
  73. "mpociot/laravel-apidoc-generator": "*"
  74. },
  75. "funding": [
  76. {
  77. "type": "patreon",
  78. "url": "https://patreon.com/shalvah"
  79. }
  80. ]
  81. }