forked from amabnl/amadeus-ws-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.04 KB
/
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
34
35
36
37
38
39
40
41
42
{
"name": "amabnl/amadeus-ws-client",
"type": "library",
"description": "SOAP Web Service client library for interacting with the Amadeus GDS through its SOAP interface",
"keywords": ["amadeus", "gds", "service", "webservice", "soap", "wsdl", "client", "xml", "travel", "airline", "hotel", "booking", "car", "rental", "offer", "masterpricer"],
"minimum-stability": "stable",
"homepage": "https://github.com/amabnl/amadeus-ws-client",
"license": "Apache-2.0",
"authors": [
{
"name": "Dieter Devlieghere",
"email": "[email protected]",
"homepage": "http://dermika.be",
"role": "Lead Developer"
}
],
"require": {
"php": ">=5.4",
"ext-soap": "*",
"ext-dom": "*",
"ext-xsl": "*",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
},
"autoload": {
"psr-4": {
"Amadeus\\": "src/Amadeus"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Amadeus\\": "tests/Amadeus"
}
},
"config": {
"platform": {
"php": "5.4"
}
}
}