forked from digitalkaoz/PHP-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·45 lines (43 loc) · 1.17 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
{
"name": "aboutyou/app-sdk",
"description": "ABOUT YOU app SDK",
"license": "MIT",
"homepage": "https://developer.aboutyou.de/",
"type": "library",
"authors": [
{
"name": "Christian Kilb",
"email": "[email protected]",
"homepage": "https://developer.aboutyou.de/",
"role": "Technical Director"
},
{
"name": "Nils Dröge",
"email": "[email protected]",
"homepage": "https://developer.aboutyou.de/",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": ">=5.3",
"aboutyou/cache": "~1.4.1",
"aboutyou/auth-sdk": "~0.3",
"psr/log": "1.0.*",
"guzzle/guzzle": "~3.7",
"rhumsaa/uuid": "~2.7"
},
"require-dev": {
"monolog/monolog": "1.*",
"phpunit/phpunit": "~4.3"
},
"autoload": {
"psr-4": {
"AboutYou\\SDK\\": "src/AboutYou/SDK/",
"AboutYou\\SDK\\Test\\": "tests/",
"": "src/"
}
}
}