forked from sitegeist/sms-responsive-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (58 loc) · 1.94 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "sitegeist/sms-responsive-images",
"type": "typo3-cms-extension",
"description": "Provides ViewHelpers and configuration to render valid responsive images based on TYPO3's image cropping tool.",
"homepage": "https://github.com/sitegeist/sms-responsive-images",
"license": ["GPL-2.0-or-later"],
"keywords": ["TYPO3 CMS", "responsive images", "srcset", "sizes", "picture", "highdpi", "retina", "picturefill", "image", "aspect ratio", "cropping"],
"authors": [
{
"name": "Simon Praetorius",
"email": "[email protected]",
"homepage": "https://sitegeist.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/sitegeist/sms-responsive-images/issues"
},
"require": {
"typo3/cms-core": "^8.7.0 || ^9"
},
"require-dev": {
"typo3/testing-framework": "^1.0",
"squizlabs/php_codesniffer": "2.*",
"editorconfig-checker/editorconfig-checker": "^7.0"
},
"conflict": {
"schnitzler/fluid-styled-responsive-images": ">=0.0.1"
},
"autoload": {
"psr-4": {
"SMS\\SmsResponsiveImages\\": "Classes/"
}
},
"replace": {
"sms_responsive_images": "self.version",
"typo3-ter/sms-responsive-images": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"scripts": {
"lint": [
"@lint:php",
"@lint:editorconfig"
],
"lint:php": "phpcs --standard=PSR2 --extensions=php --ignore=.Build,Tests,ext_emconf.php .",
"lint:editorconfig": "editorconfig-checker -d .",
"test": "phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/"
}
}