-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
31 lines (31 loc) · 955 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
{
"name": "webbuilders-group/silverstripe-next-gen-images",
"description": "Adds Support Automatic Generation of WebP Images in Silverstripe",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "image", "images", "webp"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ed Chipman",
"homepage": "https://webbuildersgroup.com",
"role": "Developer"
}
],
"require": {
"silverstripe/assets": "~2.2"
},
"require-dev": {
"silverstripe/versioned": "~1.9",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "~3.4"
},
"support": {
"issues": "https://github.com/webbuilders-group/silverstripe-next-gen-images/issues"
},
"autoload": {
"psr-4": {
"WebbuildersGroup\\NextGenImages\\": "src/",
"WebbuildersGroup\\NextGenImages\\Tests\\": "tests/"
}
}
}