forked from silverstripe/silverstripe-asset-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 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
37
38
39
40
41
42
43
{
"name": "silverstripe/asset-admin",
"description": "Asset management for the SilverStripe CMS",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"require": {
"silverstripe/admin": "^2",
"silverstripe/framework": "^5",
"silverstripe/graphql": "^4",
"silverstripe/vendor-plugin": "^1"
},
"require-dev": {
"phpunit/phpunit": "^7",
"silverstripe/cms": "^5",
"silverstripe/versioned": "^2",
"silverstripe/campaign-admin": "^2"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"expose": [
"client/dist",
"client/lang"
]
},
"scripts": {
"lint": "phpcs -s code/ tests/",
"lint-clean": "phpcbf code/ tests/"
},
"autoload": {
"psr-4": {
"SilverStripe\\AssetAdmin\\": "code/",
"SilverStripe\\AssetAdmin\\Tests\\": "tests/php/",
"SilverStripe\\AssetAdmin\\Tests\\Behat\\Context\\": "tests/behat/src/"
}
},
"config": {
"process-timeout": 600
},
"minimum-stability": "dev",
"prefer-stable": true
}