-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 907 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 907 Bytes
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
{
"name": "bploeger/rezdy-api-v1",
"type": "library",
"description": "A PHP wrapper for The Rezdy Booking API Ver. 1",
"keywords": [
"rezdy"
],
"homepage": "https://github.com/bploeger/rezdy-api-v1",
"support": {
"issues": "https://github.com/bploeger/rezdy-api-v1/issues",
"source": "https://github.com/bploeger/rezdy-api-v1"
},
"license": "MIT",
"authors": [
{
"name": "Brad Ploeger",
"email": "bploeger@arkturis.com",
"homepage": ""
}
],
"require": {
"php": ">=7.1.3",
"symfony/translation": "~2.6 || ~3.0 || ~4.0",
"symfony/psr-http-message-bridge": "~1.2",
"guzzlehttp/guzzle": "^6.1.1",
"nesbot/carbon": "^2.16.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
},
"autoload": {
"psr-4": {
"Rezdy\\": "src/Rezdy/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}