-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
30 lines (30 loc) · 958 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
{
"name": "c5labs/cli-tools",
"description": "Command line tools & scaffolding generator for concrete5.",
"require": {
"symfony/console": "~2.0|~3.0",
"symfony/process": "~2.0|~3.0",
"illuminate/bus": "5.1.*|5.2.*",
"illuminate/container": "5.1.*|5.2.*",
"illuminate/support": "5.1.*|5.2.*",
"illuminate/filesystem": "5.1.*|5.2.*",
"illuminate/contracts": "5.1.*|5.2.*",
"c5labs/package-boilerplate": "dev-master",
"c5labs/theme-boilerplate": "dev-master",
"c5labs/block-boilerplate": "dev-master",
"psy/psysh": "@stable"
},
"license": "MIT",
"authors": [
{
"name": "Oliver Green",
"email": "[email protected]"
}
],
"autoload": { "psr-4": {"C5Labs\\Cli\\": "src/C5Labs/Cli"}},
"bin": ["bin/concrete"],
"minimum-stability": "dev",
"config": {
"preferred-install": "dist"
}
}