composer.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "barryvdh/laravel-ide-helper",
  3. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  4. "license": "MIT",
  5. "keywords": [
  6. "laravel",
  7. "autocomplete",
  8. "ide",
  9. "helper",
  10. "phpstorm",
  11. "netbeans",
  12. "sublime",
  13. "codeintel",
  14. "phpdoc"
  15. ],
  16. "authors": [
  17. {
  18. "name": "Barry vd. Heuvel",
  19. "email": "barryvdh@gmail.com"
  20. }
  21. ],
  22. "require": {
  23. "php": "^7.3 || ^8.0",
  24. "ext-json": "*",
  25. "barryvdh/reflection-docblock": "^2.0.6",
  26. "composer/pcre": "^1 || ^2 || ^3",
  27. "doctrine/dbal": "^2.6 || ^3",
  28. "illuminate/console": "^8 || ^9",
  29. "illuminate/filesystem": "^8 || ^9",
  30. "illuminate/support": "^8 || ^9",
  31. "nikic/php-parser": "^4.7",
  32. "phpdocumentor/type-resolver": "^1.1.0"
  33. },
  34. "require-dev": {
  35. "ext-pdo_sqlite": "*",
  36. "friendsofphp/php-cs-fixer": "^2",
  37. "illuminate/config": "^8 || ^9",
  38. "illuminate/view": "^8 || ^9",
  39. "mockery/mockery": "^1.4",
  40. "orchestra/testbench": "^6 || ^7",
  41. "phpunit/phpunit": "^8.5 || ^9",
  42. "spatie/phpunit-snapshot-assertions": "^3 || ^4",
  43. "vimeo/psalm": "^3.12"
  44. },
  45. "suggest": {
  46. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
  47. },
  48. "minimum-stability": "dev",
  49. "prefer-stable": true,
  50. "autoload": {
  51. "psr-4": {
  52. "Barryvdh\\LaravelIdeHelper\\": "src"
  53. }
  54. },
  55. "autoload-dev": {
  56. "psr-4": {
  57. "Barryvdh\\LaravelIdeHelper\\Tests\\": "tests"
  58. }
  59. },
  60. "config": {
  61. "allow-plugins": {
  62. "composer/package-versions-deprecated": true
  63. },
  64. "sort-packages": true
  65. },
  66. "extra": {
  67. "branch-alias": {
  68. "dev-master": "2.12-dev"
  69. },
  70. "laravel": {
  71. "providers": [
  72. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  73. ]
  74. }
  75. },
  76. "scripts": {
  77. "analyze": "psalm",
  78. "check-style": [
  79. "php-cs-fixer fix --diff --diff-format=udiff --dry-run",
  80. "php-cs-fixer fix --diff --diff-format=udiff --dry-run --config=.php_cs.tests.php"
  81. ],
  82. "fix-style": [
  83. "php-cs-fixer fix",
  84. "php-cs-fixer fix --config=.php_cs.tests.php"
  85. ],
  86. "psalm-set-baseline": "psalm --set-baseline=psalm-baseline.xml",
  87. "test": "phpunit",
  88. "test-ci": "phpunit -d --without-creating-snapshots",
  89. "test-regenerate": "phpunit -d --update-snapshots"
  90. }
  91. }