-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.05 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
{
"name": "greencape/joomla-cli",
"description": "A tool for managing Joomla! installations from the command line.",
"homepage": "https://github.com/GreenCape/joomla-cli",
"license": "MIT",
"authors": [
{
"name": "Niels Braczek",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/GreenCape/joomla-cli/issues"
},
"require": {
"php": ">=7.2",
"sebastian/finder-facade": "*",
"sebastian/git": "*",
"symfony/console": "~2",
"ext-json": "*",
"league/flysystem": "^1.0",
"league/flysystem-ziparchive": "^1.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "*",
"codeclimate/php-test-reporter": "dev-master",
"league/flysystem-memory": "^1.0"
},
"autoload": {
"psr-4": {
"GreenCape\\JoomlaCLI\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GreenCapeTest\\": "tests"
}
},
"bin": [
"joomla"
],
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}