-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.11 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "zeroseven/pictureino",
"type": "typo3-cms-extension",
"description": "Responsive images – fully automated. No setup required. Boost PageSpeed and SEO with lazy loading and modern WebP delivery",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Raphael Thanner",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^12.4 || ^13.0",
"typo3/cms-backend": "*",
"typo3/cms-extbase": "*",
"symfony/rate-limiter": "^6.4 || ^7.0",
"php": ">=8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.51",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": {
"Zeroseven\\Pictureino\\": "Classes/"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"stan": "phpstan analyse -c phpstan.neon",
"stan-baseline": "phpstan analyse -c phpstan.neon --generate-baseline"
},
"extra": {
"typo3/cms": {
"extension-key": "pictureino"
}
}
}