Agrega configuración de PHP Unit
This commit is contained in:
parent
9a8cf9a387
commit
d11687263f
@ -1,21 +1,24 @@
|
|||||||
{
|
{
|
||||||
"name": "david/format_converter",
|
"name": "david/format_converter",
|
||||||
"description": "Conversion entre formatos XML, JSON y PHP (Serializado)",
|
"description": "Conversion entre formatos XML, JSON y PHP (Serializado)",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"FormatConverter\\": "src/"
|
"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"
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"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
7
phpunit.xml
Normal 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
0
tests/.gitkeep
Normal file
Loading…
Reference in New Issue
Block a user