mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
93 lines
2.4 KiB
JSON
93 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": "^7.3 || ^8.0",
|
|
"nunomaduro/collision": "^5.4.0|^6.0",
|
|
"pestphp/pest-plugin": "^1.0.0",
|
|
"phpunit/phpunit": "^9.5.5"
|
|
},
|
|
"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.47.0",
|
|
"illuminate/support": "^8.47.0",
|
|
"laravel/dusk": "^6.15.0",
|
|
"pestphp/pest-dev-tools": "dev-master",
|
|
"pestphp/pest-plugin-parallel": "^1.0"
|
|
},
|
|
"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",
|
|
"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-master": "1.x-dev"
|
|
},
|
|
"pest": {
|
|
"plugins": [
|
|
"Pest\\Plugins\\Coverage",
|
|
"Pest\\Plugins\\Init",
|
|
"Pest\\Plugins\\Version",
|
|
"Pest\\Plugins\\Context"
|
|
]
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Pest\\Laravel\\PestServiceProvider"
|
|
]
|
|
}
|
|
}
|
|
}
|