{ "name": "pestphp/pest", "description": "An elegant PHP Testing Framework.", "keywords": [ "php", "framework", "pest", "unit", "test", "testing" ], "license": "MIT", "authors": [ { "name": "Nuno Maduro", "email": "enunomaduro@gmail.com" } ], "require": { "php": "^7.3 || ^8.0", "nunomaduro/collision": "^5.11.0|^6.3.0", "pestphp/pest-plugin": "^1.1.0", "phpunit/phpunit": "^9.5.26" }, "autoload": { "psr-4": { "Pest\\": "src/" }, "files": [ "src/Functions.php", "src/Pest.php" ] }, "autoload-dev": { "psr-4": { "Tests\\": "tests/PHPUnit/" }, "files": [ "tests/Autoload.php" ] }, "require-dev": { "illuminate/console": "^8.83.26", "illuminate/support": "^8.83.26", "laravel/dusk": "^6.25.2", "pestphp/pest-dev-tools": "^1.0.0", "pestphp/pest-plugin-parallel": "^1.2" }, "minimum-stability": "dev", "prefer-stable": true, "config": { "sort-packages": true, "preferred-install": "dist", "allow-plugins": { "pestphp/pest-plugin": true } }, "bin": [ "bin/pest" ], "scripts": { "lint": "PHP_CS_FIXER_IGNORE_ENV=true php-cs-fixer fix -v", "test:lint": "PHP_CS_FIXER_IGNORE_ENV=true php-cs-fixer fix -v --dry-run", "test:types": "phpstan analyse --ansi --memory-limit=-1", "test:unit": "php bin/pest --colors=always --exclude-group=integration", "test:parallel": "php bin/pest -p --colors=always --exclude-group=integration", "test:integration": "php bin/pest --colors=always --group=integration", "update:snapshots": "REBUILD_SNAPSHOTS=true php bin/pest --colors=always", "test": [ "@test:lint", "@test:types", "@test:unit", "@test:parallel", "@test:integration" ] }, "extra": { "branch-alias": { "dev-1.x": "1.x-dev" }, "pest": { "plugins": [ "Pest\\Plugins\\Coverage", "Pest\\Plugins\\Init", "Pest\\Plugins\\Version", "Pest\\Plugins\\Environment" ] }, "laravel": { "providers": [ "Pest\\Laravel\\PestServiceProvider" ] } } }