first commit

This commit is contained in:
2022-10-15 19:57:27 +02:00
commit 7243a80807
5 changed files with 213 additions and 0 deletions

34
composer.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "scc/phpunit-php",
"description": "PHPUnit tools",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Jérôme Fix",
"email": "jerome.fix@sccd.lu"
}
],
"require": {
"php": "^7.4 || ^8.1"
},
"require-dev": {
"dg/bypass-finals": "^1.4",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Scc\\PhpUnit\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Scc\\Tests\\PhpUnit\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}