mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
91 lines
2.3 KiB
JSON
91 lines
2.3 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.0",
|
|
"pestphp/pest-plugin": "^0.3",
|
|
"pestphp/pest-plugin-coverage": "^0.3",
|
|
"pestphp/pest-plugin-expectations": "^0.3",
|
|
"pestphp/pest-plugin-init": "^0.3",
|
|
"phpunit/phpunit": ">= 9.3.7 <= 9.5.0"
|
|
},
|
|
"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": "^7.16.1",
|
|
"illuminate/support": "^7.16.1",
|
|
"laravel/dusk": "^6.9.1",
|
|
"mockery/mockery": "^1.4.1",
|
|
"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=0",
|
|
"test:unit": "php bin/pest --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:integration"
|
|
]
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "0.4.x-dev"
|
|
},
|
|
"pest": {
|
|
"plugins": [
|
|
"Pest\\Plugins\\Version"
|
|
]
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Pest\\Laravel\\PestServiceProvider"
|
|
]
|
|
}
|
|
}
|
|
}
|