This commit is contained in:
Daniel Seifert 2024-12-23 12:02:49 +01:00
commit dbfe32cf99
Signed by: DanielS
GPG Key ID: 6A513E13AEE66170

28
composer.json Normal file
View File

@ -0,0 +1,28 @@
{
"name": "d3/guzzle-factory",
"type": "library",
"description": "Guzzle factory",
"keywords": [
"Guzzle",
"http",
"client",
"factory",
"logger"
],
"homepage": "https://www.d3data.de",
"license": "MIT",
"authors": [
{
"name": "Daniel Seifert",
"email": "git@daniel-seifert.com"
}
],
"require": {
"guzzlehttp/guzzle": "^7.0"
},
"autoload": {
"psr-4": {
"D3\\GuzzleFactory\\": "src/"
}
}
}