forked from silverstripe/silverstripe-asset-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 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
{
"name": "silverstripe/asset-admin",
"description": "Asset management for the SilverStripe CMS",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"require": {
"php": "^7.4 || ^8.0",
"silverstripe/framework": "^4.11",
"silverstripe/admin": "^1.7",
"silverstripe/graphql": "^3.5 || ^4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"silverstripe/frameworktest": "^0.4.3",
"squizlabs/php_codesniffer": "^3",
"silverstripe/cms": "^4.5",
"silverstripe/campaign-admin": "^1.5"
},
"extra": {
"expose": [
"client/dist",
"client/lang"
]
},
"scripts": {
"lint": "phpcs -s code/ tests/",
"lint-clean": "phpcbf code/ tests/"
},
"autoload": {
"psr-4": {
"SilverStripe\\AssetAdmin\\": ["code/", "_legacy/"],
"SilverStripe\\AssetAdmin\\Tests\\": "tests/php/",
"SilverStripe\\AssetAdmin\\Tests\\Behat\\Context\\": "tests/behat/src/"
}
},
"config": {
"process-timeout": 600
},
"minimum-stability": "dev",
"prefer-stable": true
}