-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.21 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
{
"name": "friendsoftypo3/deferred-image-processing",
"description": "This extension provides a way to defer image processing to a later time, when the image is actually requested by the frontend user.",
"keywords": ["typo3", "frontend", "deferred" ,"image", "processing"],
"type": "typo3-cms-extension",
"homepage": "https://macopedia.com",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Macopedia Devs",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Marcin Sągol",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"extension-key": "deferred_image_processing",
"web-dir": ".Build/public"
}
},
"autoload": {
"psr-4": {
"FriendsOfTYPO3\\DeferredImageProcessing\\": "Classes"
}
},
"require": {
"php": "^8.2",
"typo3/cms-core": "^v13"
},
"require-dev": {
"typo3/testing-framework": "^8.0"
},
"config": {
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"ci:test:unit": [
".Build/vendor/bin/phpunit -c Tests/Unit/phpunit.xml"
]
}
}