Agrega configuración de PHP Unit

This commit is contained in:
David Vargas 2024-09-05 13:21:56 -06:00
parent 9a8cf9a387
commit d11687263f
3 changed files with 28 additions and 18 deletions

View File

@ -1,21 +1,24 @@
{
"name": "david/format_converter",
"description": "Conversion entre formatos XML, JSON y PHP (Serializado)",
"autoload": {
"psr-4": {
"FormatConverter\\": "src/"
}
},
"authors": [
{
"name": "DavidDevGt",
"email": "josuedavidvl18@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"symfony/yaml": "^6.4",
"psr/log": "^3.0",
"monolog/monolog": "^3.7"
"name": "david/format_converter",
"description": "Conversion entre formatos XML, JSON y PHP (Serializado)",
"autoload": {
"psr-4": {
"FormatConverter\\": "src/"
}
},
"authors": [
{
"name": "DavidDevGt",
"email": "josuedavidvl18@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"symfony/yaml": "^6.4",
"psr/log": "^3.0",
"monolog/monolog": "^3.7"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}

7
phpunit.xml Normal file
View File

@ -0,0 +1,7 @@
<phpunit bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>

0
tests/.gitkeep Normal file
View File