-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from inwx/psr3_loggeraware_interface
Let Domrobot implement PSR3 LoggerAwareInterface
- Loading branch information
Showing
2 changed files
with
53 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,31 @@ | ||
{ | ||
"name": "inwx/domrobot", | ||
"description": "PHP Client to easily use the Domrobot API of INWX", | ||
"license": "MIT", | ||
"homepage": "https://www.inwx.com/en/", | ||
"support": { | ||
"docs": "https://www.inwx.com/en/help/apidoc", | ||
"email": "support@inwx.de", | ||
"source": "https://github.com/inwx/php-client" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "INWX", | ||
"email": "support@inwx.de" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.2", | ||
"ext-curl": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"INWX\\": "src/" | ||
} | ||
}, | ||
"suggest": { | ||
"ext-xmlrpc": "Needed to use the XML-RPC API", | ||
"ext-json": "Needed to use the JSON-RPC API" | ||
} | ||
} | ||
{ | ||
"name": "inwx/domrobot", | ||
"description": "PHP Client to easily use the Domrobot API of INWX", | ||
"license": "MIT", | ||
"homepage": "https://www.inwx.com/en/", | ||
"support": { | ||
"docs": "https://www.inwx.com/en/help/apidoc", | ||
"email": "support@inwx.de", | ||
"source": "https://github.com/inwx/php-client" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "INWX", | ||
"email": "support@inwx.de" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.2", | ||
"ext-curl": "*", | ||
"monolog/monolog": ">= 2.0.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"INWX\\": "src/" | ||
} | ||
}, | ||
"suggest": { | ||
"ext-xmlrpc": "Needed to use the XML-RPC API", | ||
"ext-json": "Needed to use the JSON-RPC API" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters