mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
95 lines
2.4 KiB
JSON
95 lines
2.4 KiB
JSON
{
|
|
"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": "^8.0",
|
|
"nunomaduro/collision": "^5.10.0|^6.0",
|
|
"pestphp/pest-plugin": "^1.0.0",
|
|
"phpunit/phpunit": "10.0.x-dev"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Pest\\": "src/"
|
|
},
|
|
"exclude-from-classmap": [
|
|
"../phpunit/src/Runner/TestSuiteLoader.php",
|
|
"vendor/phpunit/phpunit/src/Runner/TestSuiteLoader.php"
|
|
],
|
|
"files": [
|
|
"overrides/Runner/TestSuiteLoader.php",
|
|
"src/Functions.php",
|
|
"src/Pest.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/PHPUnit/"
|
|
},
|
|
"files": [
|
|
"tests/Autoload.php"
|
|
]
|
|
},
|
|
"require-dev": {
|
|
"illuminate/console": "^8.47.0",
|
|
"illuminate/support": "^8.47.0",
|
|
"laravel/dusk": "^6.15.0",
|
|
"pestphp/pest-dev-tools": "dev-master"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"config": {
|
|
"sort-packages": true,
|
|
"preferred-install": "dist"
|
|
},
|
|
"bin": [
|
|
"bin/pest"
|
|
],
|
|
"scripts": {
|
|
"lint": "php-cs-fixer fix -v",
|
|
"test:lint": "php-cs-fixer fix -v --dry-run",
|
|
"test:types": "phpstan analyse --ansi --memory-limit=-1 --debug",
|
|
"test:unit": "php bin/pest --colors=always --exclude-group=integration",
|
|
"test:parallel": "exit 1",
|
|
"test:integration": "exit 1",
|
|
"update:snapshots": "exit 1",
|
|
"test": [
|
|
"@test:lint",
|
|
"@test:types",
|
|
"@test:unit"
|
|
]
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-next": "2.x-dev"
|
|
},
|
|
"pest": {
|
|
"plugins": [
|
|
"Pest\\Plugins\\Coverage",
|
|
"Pest\\Plugins\\Init",
|
|
"Pest\\Plugins\\Version",
|
|
"Pest\\Plugins\\Environment"
|
|
]
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Pest\\Laravel\\PestServiceProvider"
|
|
]
|
|
}
|
|
}
|
|
}
|