-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
54 lines (54 loc) · 1.14 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
47
48
49
50
51
52
53
54
{
"name": "salmahabdelhady/roomsxml",
"description": "RoomsXML API integration",
"keywords": [
"roomsxml",
"rooms",
"hotels",
"travel",
"locations",
"accommodation"
],
"homepage": "https://github.com/SalmaAbdelhady/RoomsXML",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Salma Abdelhady",
"email": "salmahabdelhady@gmail.com",
"homepage": "https://github.com/SalmaAbdelhady",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"kriswallsmith/buzz": "0.16.*",
"ext-curl": "*",
"jms/serializer": "1.11.*",
"doctrine/collections": "1.5.*",
"vlucas/phpdotenv": "2.4.*",
"guzzlehttp/guzzle": "6.3.*",
"symfony/console": "^4.0",
"illuminate/validation": "^5.6"
},
"require-dev": {
"symfony/var-dumper": "~2.3",
"phpunit/phpunit": "~6"
},
"autoload": {
"psr-4": {
"SalmaAbdelhady\\RoomsXML\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SalmaAbdelhady\\RoomsXML\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}