Convert tests to Pest

This commit is contained in:
2024-11-20 20:27:18 -05:00
parent 9327d8fa29
commit c61ff7a831
9 changed files with 2689 additions and 736 deletions

View File

@@ -20,8 +20,8 @@
"php": ">=8.4"
},
"require-dev": {
"phpunit/phpunit": "^11",
"phpoption/phpoption": "^1"
"phpoption/phpoption": "^1",
"pestphp/pest": "^3.5"
},
"autoload": {
"psr-4": {
@@ -30,10 +30,15 @@
},
"autoload-dev": {
"psr-4": {
"Test\\": "./tests"
"Tests\\": "./tests"
}
},
"archive": {
"exclude": [ "/tests", "/.gitattributes", "/.gitignore", "/.git", "/composer.lock" ]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}