Files
librenms-librenms/composer.json
T
Walter Dal Mut 20a64e724b Test suite completely rewritten
Our test suite mixing integration and few unit tests, is difficult
to understand and expand with new features.

This commit rewrite completely the test suite in order to separate
both: integration and unit tests in different suites in a more
maintainable and useful way.
2015-06-23 08:16:58 +02:00

51 lines
1.5 KiB
JSON

{
"name": "corley/influxdb-sdk",
"license": "MIT",
"description": "Send your app metrics to InfluxDB",
"require": {
"php": ">=5.4",
"guzzlehttp/guzzle": "~4|~5",
"zendframework/zend-stdlib": "~2",
"zendframework/zend-filter": "~2",
"zendframework/zend-servicemanager": "~2"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"athletic/athletic": "~0.1",
"ext-sockets": "*"
},
"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-4": {
"InfluxDB\\": ["./src/"],
"Corley\\": ["./benchmarks/"]
}
},
"autoload-dev": {
"psr-4": {
"InfluxDB\\": ["./tests/unit"],
"InfluxDB\\Integration\\": ["./tests/integration"]
}
},
"suggest": {
"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"
}
}