-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.7 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
{
"name": "tenside/core-bundle",
"description": "Tenside is a wrapper around composer that helps you manage composer projects, either from CLI or browser.",
"keywords": ["package", "dependency", "autoload"],
"homepage": "https://github.com/tenside/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Schiffler",
"email": "[email protected]",
"homepage": "https://www.cyberspectrum.de"
}
],
"support": {
"irc": "irc://irc.freenode.org/tenside",
"issues": "https://github.com/tenside/core-bundle/issues"
},
"require": {
"php": ">=5.6",
"ext-zip": "*",
"ext-openssl": "*",
"firebase/php-jwt": "~2.2",
"monolog/monolog": "~1.17",
"symfony/config": "~3.0",
"symfony/console": "~3.0",
"symfony/dependency-injection": "~3.0",
"symfony/framework-bundle": "~3.0",
"symfony/finder": "~3.0",
"symfony/http-foundation": "~3.0",
"symfony/http-kernel": "~3.0",
"symfony/process": "~3.0",
"symfony/security-core": "~3.0",
"symfony/security-http": "~3.0",
"symfony/routing": "~3.0",
"symfony/yaml": "~3.0",
"symfony/polyfill-php70": "~1.0",
"tenside/core": "~1.0@dev",
"doctrine/annotations": "~1.3"
},
"require-dev": {
"phpcq/all-tasks": "~1.1",
"nelmio/api-doc-bundle": "~2.10",
"symfony/expression-language": "~3.0"
},
"suggest": {
"nelmio/api-doc-bundle": "To benefit from the API documentation annotation"
},
"autoload": {
"psr-4": {
"Tenside\\CoreBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tenside\\CoreBundle\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}