-
Notifications
You must be signed in to change notification settings - Fork 191
/
composer.json
37 lines (37 loc) · 998 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
34
35
36
37
{
"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": ">=8.1",
"ext-soap": "*",
"ext-dom": "*",
"ext-xsl": "*",
"psr/log": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Amadeus\\": "src/Amadeus"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Amadeus\\": "tests/Amadeus"
}
}
}