-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.13 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.13 KB
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": "^8.3",
"silverstripe/framework": "^6.1",
"silverstripe/admin": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^11.3",
"silverstripe/frameworktest": "^2",
"squizlabs/php_codesniffer": "^3.7",
"silverstripe/cms": "^6",
"silverstripe/standards": "^1",
"phpstan/extension-installer": "^1.3"
},
"extra": {
"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
}