-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.48 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": "cobhimself/api-services-bundle",
"description": "The ApiServicesBundle provides classes which aid in the creation and use of commands associated with API endpoints.",
"keywords": ["api", "services", "description", "bundle", "command"],
"readme": "README.md",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Collin Brooks",
"email": "[email protected]",
"homepage": "https://github.com/cobhimself",
"role": "Lead"
}
],
"support": {
"source": "https://github.com/cobhimself/api-services-bundle",
"issues": "https://github.com/cobhimself/api-services-bundle/issues"
},
"require": {
"doctrine/common": "^2.6.2",
"guzzlehttp/guzzle": "^6.0",
"guzzlehttp/guzzle-services": "^1.1",
"symfony/config": "^2.8",
"symfony/console": "^2.8",
"symfony/dependency-injection": "^2.8",
"symfony/event-dispatcher": "^2.8",
"symfony/http-kernel": "^2.8",
"symfony/yaml": "^2.8|^3.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"php-coveralls/php-coveralls": "*"
},
"autoload": {
"psr-4": {
"Cob\\Bundle\\ApiServicesBundle\\": "src/Bundle/ApiServicesBundle/",
"Cob\\Bundle\\ApiServicesBundle\\Tests\\": "src/Bundle/ApiServicesBundle/Tests/"
}
},
"config": {
"sort-packages": true
}
}