-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
73 lines (73 loc) · 1.94 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
{
"name": "codemonkey1988/responsive-images",
"type": "typo3-cms-extension",
"description": "Adds responsive images support for many browser types to TYPO3 using the picture tag.",
"homepage": "https://github.com/codemonkey1988/responsive-images/",
"license": "GPL-2.0-or-later",
"keywords": [
"TYPO3 CMS",
"responsive_images"
],
"authors": [
{
"name": "Tim Schreiner",
"role": "Developer",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"typo3/cms-core": "^12.4 || ^13.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.61",
"phpstan/phpstan": "^1.11.9",
"saschaegerer/phpstan-typo3": "^1.10.1",
"typo3/testing-framework": "^8.0 || ^9.0"
},
"autoload": {
"psr-4": {
"Codemonkey1988\\ResponsiveImages\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Codemonkey1988\\ResponsiveImages\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/responsive-images": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"lock": false,
"allow-plugins": true
},
"scripts": {
"prepare-release": [
"rm -f .editorconfig",
"rm -f .gitattributes",
"rm -f .gitignore",
"rm -f .gitlab-ci.yml",
"rm -f .php-cs-fixer.dist.php",
"rm -f phpstan.neon",
"rm -f UnitTests.xml",
"rm -f FunctionalTests.xml",
"rm -rf .ddev/",
"rm -rf build/",
"rm -rf Tests/"
],
"phpcsfixer": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --dry-run --using-cache=no --diff",
"phpstan": "phpstan analyse --ansi --no-progress --memory-limit=1024M --configuration=phpstan.neon",
"phpunit": "phpunit --color -c UnitTests.xml",
"phpunit-functional": "phpunit --color -c FunctionalTests.xml"
},
"extra": {
"typo3/cms": {
"extension-key": "responsive_images",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
}
}