forked from lekoala/silverstripe-excel-import-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.06 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
{
"name": "lekoala/silverstripe-excel-import-export",
"description": "Replace CSV with Excel in SilverStripe",
"type": "silverstripe-module",
"keywords": [
"silverstripe",
"excel",
"import",
"export",
"module",
"cms"
],
"license": "MIT",
"authors": [{
"name": "LeKoala",
"email": "[email protected]"
}],
"require": {
"php": ">=7",
"silverstripe/framework": "^4",
"silverstripe/siteconfig": "^4",
"silverstripe/admin": "^1",
"phpoffice/phpspreadsheet": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"extra": {
"installer-name": "excel-import-export"
},
"support": {
"issues": "https://github.com/lekoala/silverstripe-excel-import-export/issues"
},
"scripts": {
"lint": "phpcs code/ tests/",
"lint-clean": "phpcbf code/ tests/",
"test": "phpunit -v"
},
"minimum-stability": "dev",
"prefer-stable": true
}