-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 895 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
{
"name": "mhe/silverstripe-responsiveimages",
"description": "Silverstripe module to handle responsive images, auto-generating meaningful resolutions",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"CMS",
"image"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Martin Heise",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-dom": "*",
"silverstripe/framework": "^5.0",
"mhe/imagetools": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Mhe\\SmartImages\\": "src/",
"Mhe\\SmartImages\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}