{ "name": "pestphp/pest-plugin-laravel", "description": "The Pest Laravel Plugin", "keywords": [ "php", "framework", "pest", "unit", "test", "testing", "laravel" ], "license": "MIT", "require": { "php": "^8.3.0", "laravel/framework": "^11.45.2|^12.52.0|^13.0", "pestphp/pest": "^4.4.1" }, "autoload": { "psr-4": { "Pest\\Laravel\\": "src/" }, "files": [ "src/Autoload.php" ] }, "autoload-dev": { "psr-4": { "Tests\\": "tests/" } }, "require-dev": { "laravel/dusk": "^8.3.6", "orchestra/testbench": "^9.13.0|^10.9.0|^11.0", "pestphp/pest-dev-tools": "^4.1.0" }, "minimum-stability": "dev", "prefer-stable": true, "config": { "sort-packages": true, "preferred-install": "dist", "allow-plugins": { "pestphp/pest-plugin": true } }, "extra": { "laravel": { "providers": [ "Pest\\Laravel\\PestServiceProvider" ] }, "pest": { "plugins": [ "Pest\\Laravel\\Plugin" ] } }, "scripts": { "lint": "pint", "test:lint": "pint --test", "test:unit": "pest --colors=always --exclude-group=options", "test:unit:options": "pest --group=options --without-exception-handling --without-deprecation-handling", "test": [ "@test:lint", "@test:unit", "@test:unit:options" ] } }