-
Notifications
You must be signed in to change notification settings - Fork 52
/
composer.json
33 lines (33 loc) · 929 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "hotelbeds/hotel-api-sdk-php",
"description": "Hotelbeds Hotel-API SDK for PHP",
"type": "library",
"require": {
"php": ">=5.5",
"zendframework/zend-http": "^2.5",
"zendframework/zend-json": "^2.5",
"nicmart/string-template": "v0.1.0",
"zendframework/zend-config": "2.5.1"
},
"require-dev": {
"php": ">=5.5",
"zendframework/zend-http": "^2.5",
"zendframework/zend-json": "^2.5",
"phpunit/php-code-coverage": "3.0.1",
"phpunit/phpunit": "5.0.8"
},
"license": "LGPL-2.1",
"authors": [
{
"name": "Tomeu Capo",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": { "hotelbeds\\hotel_api_sdk\\": "src/" }
},
"autoload-dev": {
"psr-4": { "hotelbeds\\hotel_api_sdk\\Tests\\": "tests/" }
}
}