-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1.21 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
43
44
45
46
{
"name": "upstain/sabre-api-client",
"description": "Sabre API Client",
"type": "library",
"homepage": "https://upstain.me",
"license": "MIT",
"keywords": [
"PHP",
"Upstain",
"Sabre",
"Sabre API"
],
"authors": [
{
"name": "Bene Lorant",
"email": "bene.lori89@gmail.com"
}
],
"require": {
"php": "^7.4",
"ext-json": "*",
"symfony/cache-contracts": "^2.1",
"symfony/http-client": "^5.1"
},
"require-dev": {
"phpstan/phpstan": "^0.12.32",
"roave/security-advisories": "dev-master",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.0.0",
"symplify/easy-coding-standard": "^8.1",
"vlucas/phpdotenv": "^3.0",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"Upstain\\SabreApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Upstain\\SabreApiClient\\Tests\\": "tests/",
"Upstain\\SabreApiClient\\Tests\\Unit\\": "tests/unit",
"Upstain\\SabreApiClient\\Tests\\Integration\\": "tests/integration"
}
}
}