-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
51 lines (51 loc) · 1.37 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
{
"name": "sourcebroker/imageopt",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"description": "Optimize images created/resized by TYPO3 so they take less space. Safe as it does not optimize original images.",
"require": {
"typo3/cms-core": "^10.4 || ^11.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"nimut/testing-framework": "^5.0",
"symfony/dotenv": "^5.0"
},
"suggest": {
"typo3/cms-scheduler": "^10.4 || ^11.5"
},
"autoload": {
"psr-4": {
"SourceBroker\\Imageopt\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"SourceBroker\\Imageopt\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "imageopt",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"scripts": {
"phpunit-test": "TYPO3_PATH_ROOT=.Build/Web/ ./.Build/bin/phpunit -c .Build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit/",
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/imageopt ]|| ln -snvf ../../../../. .Build/Web/typo3conf/ext/imageopt"
]
}
}