-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·66 lines (64 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "collins/shop-sdk",
"description": "Shop API SDK",
"license": "proprietary",
"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]"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/goetas/cache.git"
},
{
"type": "git",
"url": "https://app-developers-89:[email protected]/public-sdks-2/php-auth-sdk.git"
},
{
"type": "git",
"url": "https://app-developers-89:[email protected]/public-sdks-2/php-jws.git"
}
],
"require": {
"php": ">=5.3",
"psr/log": "1.0.*",
"symfony/event-dispatcher": ">=2.1",
"guzzle/guzzle": "~3.7",
"rhumsaa/uuid": "~2.7",
"doctrine/cache": "dev-multiget",
"collins/php-auth-sdk": "~0.3"
},
"suggest" : {
"monolog/monolog" : ".",
"ext-zlib" : "Allows handling gzip compressed responses.",
"lib-curl" : "Allows using cURL as a request backend.",
"lib-openssl" : "Allows handling SSL requests when not using cURL."
},
"require-dev": {
"monolog/monolog": "1.*",
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {
"Collins\\": "src/"
},
"psr-4": {
"Collins\\ShopApi\\Test\\": "tests/"
}
}
}