-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
46 lines (46 loc) · 1.18 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
{
"name": "loco/swizzle",
"license": "MIT",
"type": "library",
"keywords": ["api","Guzzle","Swagger"],
"description": "Build Guzzle service descriptions from Swagger compliant APIs",
"homepage" : "https://github.com/loco/swizzle",
"authors": [
{
"name": "Tim Whitlock",
"email": "[email protected]",
"homepage": "https://localise.biz/",
"role": "Developer"
},
{
"name": "Alexandr Zolotukhin",
"email": "[email protected]",
"homepage": "https://github.com/supersmile2009",
"role": "Developer"
}
],
"require": {
"php": ">=5.5",
"ext-json": "*",
"guzzlehttp/guzzle-services": "^1.1",
"monolog/monolog": "1.*"
},
"require-dev" : {
"phpunit/phpunit": "^4.0 || ^5.0"
},
"autoload": {
"psr-4": {
"Loco\\Utils\\Swizzle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Loco\\Tests\\Utils\\Swizzle\\": "tests/Tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}