{ "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", "dev" ], "authors": [ { "name": "Barry vd. Heuvel", "email": "barryvdh@gmail.com" } ], "require": { "php": "^8.2", "ext-json": "*", "barryvdh/reflection-docblock": "^2.4", "composer/class-map-generator": "^1.0", "illuminate/console": "^11.15 || ^12 || ^13.0", "illuminate/database": "^11.15 || ^12 || ^13.0", "illuminate/filesystem": "^11.15 || ^12 || ^13.0", "illuminate/support": "^11.15 || ^12 || ^13.0" }, "require-dev": { "ext-pdo_sqlite": "*", "friendsofphp/php-cs-fixer": "^3", "illuminate/config": "^11.15 || ^12 || ^13.0", "illuminate/view": "^11.15 || ^12 || ^13.0", "larastan/larastan": "^3.1", "mockery/mockery": "^1.4", "orchestra/testbench": "^9.2 || ^10 || ^11.0", "phpstan/phpstan-phpunit": "^2.0", "phpunit/phpunit": "^10.5 || ^11.5.3 || ^12.5.12", "spatie/phpunit-snapshot-assertions": "^4 || ^5", "vlucas/phpdotenv": "^5" }, "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.7-dev" }, "laravel": { "providers": [ "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider" ] } }, "scripts": { "analyze": "phpstan", "analyze-set-baseline": "phpstan --generate-baseline", "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" ], "test": "phpunit", "test-ci": "phpunit", "test-regenerate": "phpunit -d --update-snapshots" } }