-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.88 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
{
"name": "codappix/typo3-responsive-images",
"description": "TYPO3 Extension to generate perfectly sized responsive images",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Justus Moroni",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Codappix\\ResponsiveImages\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Codappix\\ResponsiveImages\\Tests\\": "Tests/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "responsive_images",
"web-dir": ".Build/public"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"typo3/cms-core": "^12.4",
"typo3/cms-frontend": "^12.4"
},
"require-dev": {
"b13/container": "^2.3",
"codappix/typo3-php-datasets": "^1.5",
"contentblocks/content-blocks": "^0.7",
"erickskrauch/php-cs-fixer-custom-fixers": "^1.2",
"friendsofphp/php-cs-fixer": "^3.50",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.21",
"pedrotroller/php-cs-custom-fixer": "^2.33",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"saschaegerer/phpstan-typo3": "^1.9",
"spaze/phpstan-disallowed-calls": "^3.0",
"staabm/phpstan-todo-by": "^0.1.20",
"typo3/cms-fluid-styled-content": "^12.4",
"typo3/cms-install": "^12.4",
"typo3/testing-framework": "^8.0",
"tomasvotruba/cognitive-complexity": "^0.2.2"
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true
}
}
}