-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
43 lines (43 loc) · 1.09 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
{
"name": "b13/picture",
"type": "typo3-cms-extension",
"description": "Improved TYPO3 image ViewHelper creating picture elements with support for sizes, sources, additional image formats, etc.",
"license": ["GPL-2.0-or-later"],
"extra": {
"typo3/cms": {
"extension-key": "picture",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
},
"require": {
"typo3/cms-fluid": "^11.5 || ^12.4 || ^13.1"
},
"autoload": {
"psr-4": {
"B13\\Picture\\": "Classes/"
}
},
"require-dev": {
"typo3/cms-fluid": "^11.5 || ^12.4 || ^13.1",
"saschaegerer/phpstan-typo3": "^1.8",
"typo3/coding-standards": "^0.5.5",
"typo3/tailor": "^1.1",
"typo3/testing-framework": "^7.0 || ^8.0"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"sort-packages": true
},
"autoload-dev": {
"psr-4": {
"B13\\Picture\\Tests\\": "Tests/"
}
}
}