initial commit

This commit is contained in:
2025-07-17 12:59:14 +02:00
commit e55b359e44
11 changed files with 3864 additions and 0 deletions

39
composer.json Normal file
View File

@@ -0,0 +1,39 @@
{
"name": "magdev/listmonk-api-bundle",
"description": "Symfony bundle to integrate Listmonk in your applications",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "magdev",
"email": "magdev3.0@gmail.com"
}
],
"require": {
"magdev/listmonk-api": "dev-main"
},
"require-dev": {
"phpunit/phpunit": "^12.2",
"symfony/config": "^7.3",
"symfony/dependency-injection": "^7.3",
"symfony/http-kernel": "^7.3",
"symfony/phpunit-bridge": "^7.3"
},
"autoload": {
"psr-4": {
"Magdev\\ListmonkApiBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Magdev\\ListmonkApiBundleTest\\": "tests/"
}
},
"repositories": [
{
"type": "path",
"url": "../listmonk-api"
}
]
}