feat : ajout de l'auth et du guichet pour la récupération d'info bovin

This commit is contained in:
2026-01-23 10:03:14 +01:00
commit b279f1ac47
25 changed files with 4565 additions and 0 deletions

35
composer.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "Malio/ednotif-bundle",
"description": "Client EDNOTIF (Guichet + wsIpBNotif) pour Symfony",
"type": "symfony-bundle",
"version": "0.0.1",
"license": "MIT",
"require": {
"php": "^8.4",
"ext-soap": "*",
"ext-xml": "*",
"symfony/framework-bundle": "^8.0",
"symfony/config": "^8.0",
"symfony/dependency-injection": "^8.0",
"symfony/http-kernel": "^8.0",
"symfony/options-resolver": "^8.0",
"symfony/cache": "^8.0",
"psr/log": "^3.0"
},
"autoload": {
"psr-4": {
"Malio\\EdnotifBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Malio\\EdnotifBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"symfony/phpunit-bridge": "^8.0"
},
"minimum-stability": "stable",
"prefer-stable": true
}