-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
44 lines (35 loc) · 1.03 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
{
"name": "calendart/google-adapter",
"type": "library",
"description": "Google Adapter for CalendArt",
"keywords": ["Calendar", "Events", "Scheduler", "Schedule", "Agenda", "Google"],
"license": "MIT",
"authors": [
{
"name": "Baptiste Clavié",
"email": "[email protected]",
"homepage": "http://baptiste.xn--clavi-fsa.net/",
"role": "Project Lead"
}
],
"require": {
"php": ">=5.5.0",
"calendart/calendart": "^1.6",
"psr/log": "^1.0",
"doctrine/collections": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^1.1 || ^2.0",
"php-http/message": "^1.1",
"php-http/message-factory": "^1.0",
"php-http/client-common": "^1.4",
"php-http/discovery": "^1.1"
},
"require-dev": {
"php-http/guzzle6-adapter": "^1.1"
},
"autoload": {
"psr-4": {
"CalendArt\\Adapter\\Google\\": ["src/", "test/"]
}
}
}