Files
librenms-librenms/composer.json
T
Walter Dal Mut 88c00c3b02 Fixes #2 - Added factory method
In order to obtain a valid client you can use the factory
2014-09-13 11:36:17 +02:00

42 lines
1.3 KiB
JSON

{
"name": "corley/influxdb-sdk",
"license": "MIT",
"description": "Send your app metrics to InfluxDB",
"require": {
"guzzlehttp/guzzle": "~4",
"zendframework/zend-stdlib": "~2",
"zendframework/zend-filter": "~2",
"zendframework/zend-servicemanager": "~2"
},
"require-dev": {
"phpspec/phpspec": "2.*",
"phpunit/phpunit": "4.*"
},
"homepage": "http://www.corley.it/",
"keywords": ["influxdb", "udp", "sdk"],
"authors": [
{
"name": "Gianluca Arbezzano",
"email": "[email protected]"
},
{
"name": "Walter Dal Mut",
"email": "[email protected]"
},
{
"name": "Gabriele Mittica",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"InfluxDB\\": ["./src/", "./tests"]
}
},
"suggests": {
"fabpot/pimple": "Allows to prepare the client dependencies in order to require an initialized instance",
"zendframework/zend-servicemanager": "Use a service locator in order to prepare a valid instance",
"symfony/dependency-injection": "Prepare a valid instance via the symfony DiC"
}
}