1
0
mirror of https://github.com/ovh/php-ovh.git synced 2023-11-05 03:20:26 +01:00

Update composer to use Httplug adapters

`php-http/guzzle-adapter` is still required as dev dependency because it is used as the base adapter. All the unit tests required that client to work.
This commit is contained in:
Stéphane HULARD 2016-04-04 18:54:01 +02:00
parent ed5207be27
commit 55299060c9

View File

@ -3,7 +3,10 @@
"description": "Wrapper for OVH APIs", "description": "Wrapper for OVH APIs",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"require": { "require": {
"guzzlehttp/guzzle": "^6.0" "guzzlehttp/psr7": "~1.2",
"php-http/httplug": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^0.8"
}, },
"autoload": { "autoload": {
"psr-4": {"Ovh\\": "src/"} "psr-4": {"Ovh\\": "src/"}
@ -12,6 +15,7 @@
"phpunit/phpunit": "4.*", "phpunit/phpunit": "4.*",
"phpdocumentor/phpdocumentor": "2.*", "phpdocumentor/phpdocumentor": "2.*",
"squizlabs/php_codesniffer": "2.*", "squizlabs/php_codesniffer": "2.*",
"phing/phing": "^2.14" "phing/phing": "^2.14",
"php-http/guzzle6-adapter": "^1.0"
} }
} }