Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
92 lines
2.7 KiB
JSON
Executable File
92 lines
2.7 KiB
JSON
Executable File
{
|
|
"name": "barryvdh/laravel-ide-helper",
|
|
"description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"laravel",
|
|
"autocomplete",
|
|
"ide",
|
|
"helper",
|
|
"phpstorm",
|
|
"netbeans",
|
|
"sublime",
|
|
"codeintel",
|
|
"phpdoc"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Barry vd. Heuvel",
|
|
"email": "barryvdh@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.1",
|
|
"ext-json": "*",
|
|
"barryvdh/reflection-docblock": "^2.1.1",
|
|
"composer/class-map-generator": "^1.0",
|
|
"illuminate/console": "^10 || ^11",
|
|
"illuminate/database": "^10.38 || ^11",
|
|
"illuminate/filesystem": "^10 || ^11",
|
|
"illuminate/support": "^10 || ^11",
|
|
"nikic/php-parser": "^4.18 || ^5",
|
|
"phpdocumentor/type-resolver": "^1.1.0"
|
|
},
|
|
"require-dev": {
|
|
"ext-pdo_sqlite": "*",
|
|
"friendsofphp/php-cs-fixer": "^3",
|
|
"illuminate/config": "^9 || ^10 || ^11",
|
|
"illuminate/view": "^9 || ^10 || ^11",
|
|
"mockery/mockery": "^1.4",
|
|
"orchestra/testbench": "^8 || ^9",
|
|
"phpunit/phpunit": "^10.5",
|
|
"spatie/phpunit-snapshot-assertions": "^4 || ^5",
|
|
"vimeo/psalm": "^5.4"
|
|
},
|
|
"suggest": {
|
|
"illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9|^10|^11)."
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Barryvdh\\LaravelIdeHelper\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Barryvdh\\LaravelIdeHelper\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"composer/package-versions-deprecated": true
|
|
},
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "3.1-dev"
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"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-fixer.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"
|
|
}
|
|
}
|