mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
This update improves the parsing of return types, allowing array return types to be recognized. This was needed to properly recognize the files and allFiles methods as duplicates (the function filtering duplicate definitions - `removeDuplicateMethodsFromPhpDoc` in `Alias.php` - didn't recognise them as duplicates, because the return type was seen as part of the name).
58 lines
1.7 KiB
JSON
58 lines
1.7 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",
|
|
"illuminate/support": "^5.5,<5.8",
|
|
"illuminate/console": "^5.5,<5.8",
|
|
"illuminate/filesystem": "^5.5,<5.8",
|
|
"barryvdh/reflection-docblock": "^2.0.6",
|
|
"composer/composer": "^1.6"
|
|
},
|
|
"require-dev": {
|
|
"illuminate/config": "^5.1,<5.8",
|
|
"illuminate/view": "^5.1,<5.8",
|
|
"phpro/grumphp": "^0.14",
|
|
"phpunit/phpunit" : "4.*",
|
|
"scrutinizer/ocular": "~1.1",
|
|
"squizlabs/php_codesniffer": "^3",
|
|
"doctrine/dbal": "~2.3"
|
|
},
|
|
"suggest": {
|
|
"doctrine/dbal": "Load information from the database about models for phpdocs (~2.3)"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Barryvdh\\LaravelIdeHelper\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Barryvdh\\LaravelIdeHelper\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit",
|
|
"check-style": "phpcs -p --standard=PSR2 src/",
|
|
"fix-style": "phpcbf -p --standard=PSR2 src/"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.5-dev"
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
|
|
]
|
|
}
|
|
}
|
|
}
|