-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.13 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
{
"name": "westkingdom/hierarchical-email-cli",
"type": "project",
"description": "Commandline tool for the Hierarchical Group Email library.",
"homepage": "https://github.com/westkingdom/hierarchical-email-cli",
"license": "MIT",
"authors": [
{
"name": "Greg Anderson",
"email": "[email protected]",
"homepage": "https://github.com/greg-1-anderson",
"role": "Developer"
}
],
"minimum-stability": "beta",
"require": {
"consolidation/Robo": "^1",
"symfony/yaml": "~2.2",
"westkingdom/hierarchical-group-email": "^1.0.5"
},
"require-dev": {
"phpunit/phpunit": "^3.5",
"phpspec/prophecy-phpunit": "~1.0"
},
"bin": [
"scripts/hge"
],
"autoload": {
"psr-4": {
"Westkingdom\\HierarchicalGroupEmail\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Westkingdom\\HierarchicalGroupEmail\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "5.5"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}