-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.25 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.25 KB
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": "plan2net/webp",
"license": "GPL-3.0",
"description": "Creates WebP copies for images (TYPO3 CMS)",
"type": "typo3-cms-extension",
"homepage": "https://www.plan2.net/",
"authors": [
{
"name": "Wolfgang Klinger",
"role": "Lead Developer"
},
{
"name": "Martin Kutschker",
"role": "reStructuredText Documentation"
},
{
"name": "Team Wonderland",
"role": "Support and review"
}
],
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"require": {
"php": ">=8.2",
"typo3/cms-core": "^12.4 || ^13.4"
},
"suggest": {
"ext-gd": "Use GD for image processing"
},
"autoload": {
"psr-4": {
"Plan2net\\Webp\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Plan2net\\Webp\\Tests\\": "Tests/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "webp",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"require-dev": {
"phpunit/phpunit": "^11",
"typo3/testing-framework": "^8.0",
"friendsofphp/php-cs-fixer": "^3.75"
}
}