forked from bploeger/rezdy-api-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.04 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.04 KB
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
{
"name": "bploeger/rezdy-api-v1",
"type": "library",
"description": "A PHP wrapper for The Rezdy Booking API Ver. 1",
"keywords": [
"Rezdy"
],
"homepage": "",
"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/"
}
},
"repositories": {
"dev-package": {
"type": "path",
"url": "c:/users/brad/documents/rezdy-api-v1/src/Rezdy",
"options": {
"symlink": true
}
}
}
}