forked from burnbright/silverstripe-importexport
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
37 lines (37 loc) · 893 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
31
32
33
34
35
36
37
{
"name": "i-lateral/silverstripe-importexport",
"description": "An upgrade to SilverStripe's bulk loading and exporting",
"type": "silverstripe-vendormodule",
"license": "MIT",
"keywords": [
"csv",
"import",
"bulkload",
"export",
"data"
],
"authors": [
{
"name": "Jeremy Shipman",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"silverstripe/framework": "^4.2",
"silverstripe/admin": "^1.2",
"silverstripe/assets": "^1.2",
"goodby/csv": "^1.3"
},
"extra": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"ilateral\\SilverStripe\\ImportExport\\": "src/",
"ilateral\\SilverStripe\\ImportExport\\Tests\\": "tests/"
}
}
}