-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
77 lines (75 loc) · 2.66 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"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", "image", "aspect ratio", "cropping", "lazyload", "placeholder"],
"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": "^12.2 || ^11.5 || ^10.4"
},
"require-dev": {
"typo3/testing-framework": "^7.0 || ^6.0 || dev-main",
"squizlabs/php_codesniffer": "^3.0",
"editorconfig-checker/editorconfig-checker": "^10.0",
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": "^0.1.2"
},
"autoload": {
"psr-4": {
"Sitegeist\\ResponsiveImages\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Sitegeist\\ResponsiveImages\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "sms_responsive_images",
"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": "ec .",
"test": [
"@test:unit",
"@test:functional"
],
"test:unit": "phpunit -c Build/Testing/UnitTests.xml",
"test:functional": "phpunit -c Build/Testing/FunctionalTests.xml",
"prepare-release": [
"rm -r .github .ecrc .editorconfig .gitattributes Tests"
],
"render-documentation": "docker-compose -f Build/Documentation/docker-compose.yml run --rm t3docmake",
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
}
}