-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
49 lines (49 loc) · 1022 Bytes
/
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
{
"name": "marcharding/oxrun",
"description": "Oxrun provides a cli toolset for the OXID eShop Community Edition",
"license": "MIT",
"support": {
"issues": "https://github.com/marcharding/oxrun/issues"
},
"homepage": "https://github.com/marcharding/oxrun",
"keywords": [
"oxid",
"installer",
"cli"
],
"require": {
"symfony/console": "2.7.*",
"symfony/event-dispatcher":"2.7.*",
"symfony/finder":"2.7.*",
"guzzlehttp/guzzle": "^5.0",
"raulfraile/distill": "0.9.*",
"nikic/php-parser": "1.4.*"
},
"require-dev": {
"phpunit/phpunit": "4.6.*",
"php-coveralls/php-coveralls": "^2.0"
},
"autoload": {
"psr-4": {
"": [
"src",
"tests"
]
}
},
"authors": [
{
"name": "Marc Harding",
"email": "info@marcharding.de"
},
{
"name":"Stefan Krenz",
"email":"info@kyoya.de"
},
{
"name":"Tobias Matthaiou",
"email":"github@tobimat.de"
}
],
"bin": ["bin/oxrun"]
}