Compare commits

...

2 Commits

Author SHA1 Message Date
a2cbb568ec Prueba del runner 2024-09-05 13:35:43 -06:00
d11687263f Agrega configuración de PHP Unit 2024-09-05 13:21:56 -06:00
4 changed files with 29 additions and 19 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>

View File

@ -61,7 +61,7 @@
<textarea class="form-control" v-model="outputData" rows="6" readonly></textarea>
</div>
<div v-if="message" :class="{'text-success': success, 'text-danger': !success}" class="mt-3">
<div v-if="message" :class="{'text-success': success, 'text-danger': !success}" class="mt-1">
{{ message }}
</div>
</div>

0
tests/.gitkeep Normal file
View File