-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
36 lines (36 loc) · 1.16 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
{
"name": "craftsmancoding/xls2modx",
"description": "Command Line Utility for importing an XLS sheet into MODX as resources (pages)",
"type": "library",
"keywords": ["modx", "xls", "import", "cli"],
"homepage": "http://github.com/craftsmancoding/xls2modx",
"license": "GPL-2.0",
"authors": [
{
"name": "Everett Griffiths",
"email": "[email protected]",
"homepage": "http://craftsmancoding.com"
}
],
"support": {
"email": "[email protected]",
"issues": "http://github.com/craftsmancoding/xls2modx/issues",
"forum": "http://forums.modx.com/",
"wiki": "http://github.com/craftsmancoding/xls2modx/wiki",
"source": "http://github.com/craftsmancoding/xls2modx"
},
"require": {
"php": ">=5.3",
"phpoffice/phpexcel": "1.8.0",
"symfony/filesystem": "2.6.6",
"symfony/finder": "2.6.6",
"symfony/console": "2.6.6",
"symfony/yaml": "3.0.*@dev"
},
"autoload": {
"psr-4": {
"Xls2modx\\": ["src/"]
},
"files": ["src/helper.php"]
}
}