mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-17 17:47:13 +00:00
89 lines
2.5 KiB
JSON
89 lines
2.5 KiB
JSON
{
|
|
"name": "barryvdh/laravel-ide-helper",
|
|
"description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
|
|
"keywords": [
|
|
"laravel",
|
|
"autocomplete",
|
|
"ide",
|
|
"helper",
|
|
"phpstorm",
|
|
"netbeans",
|
|
"sublime",
|
|
"codeintel",
|
|
"phpdoc"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Barry vd. Heuvel",
|
|
"email": "[email protected]"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.3 || ^8.0",
|
|
"ext-json": "*",
|
|
"barryvdh/reflection-docblock": "^2.0.6",
|
|
"composer/composer": "^1.6 || ^2.0.13",
|
|
"doctrine/dbal": "^2.6 || ^3",
|
|
"illuminate/console": "^8",
|
|
"illuminate/filesystem": "^8",
|
|
"illuminate/support": "^8",
|
|
"nikic/php-parser": "^4.7",
|
|
"phpdocumentor/type-resolver": "^1.1.0"
|
|
},
|
|
"require-dev": {
|
|
"ext-pdo_sqlite": "*",
|
|
"friendsofphp/php-cs-fixer": "^2",
|
|
"illuminate/config": "^8",
|
|
"illuminate/view": "^8",
|
|
"mockery/mockery": "^1.4",
|
|
"orchestra/testbench": "^6",
|
|
"phpunit/phpunit": "^8.5 || ^9",
|
|
"spatie/phpunit-snapshot-assertions": "^3 || ^4",
|
|
"vimeo/psalm": "^3.12"
|
|
},
|
|
"suggest": {
|
|
"illuminate/events": "Required for automatic helper generation (^6|^7|^8)."
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.9-dev"
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Barryvdh\\LaravelIdeHelper\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Barryvdh\\LaravelIdeHelper\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"scripts": {
|
|
"analyze": "psalm",
|
|
"check-style": [
|
|
"php-cs-fixer fix --diff --diff-format=udiff --dry-run",
|
|
"php-cs-fixer fix --diff --diff-format=udiff --dry-run --config=.php_cs.tests.php"
|
|
],
|
|
"fix-style": [
|
|
"php-cs-fixer fix",
|
|
"php-cs-fixer fix --config=.php_cs.tests.php"
|
|
],
|
|
"psalm-set-baseline": "psalm --set-baseline=psalm-baseline.xml",
|
|
"test": "phpunit",
|
|
"test-ci": "phpunit -d --without-creating-snapshots",
|
|
"test-regenerate": "phpunit -d --update-snapshots"
|
|
}
|
|
}
|