-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
41 lines (41 loc) · 1.08 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
{
"name": "elementareteilchen/unduplicator",
"type": "typo3-cms-extension",
"description": "Finds duplicates in sys_file and unduplicates them",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1 || ^8.2 || ^8.3",
"ext-pdo": "*",
"typo3/cms-core": "^12.4"
},
"extra": {
"typo3/cms": {
"extension-key": "unduplicator",
"web-dir": ".Build/Web"
}
},
"autoload": {
"psr-4": {
"ElementareTeilchen\\Unduplicator\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"ElementareTeilchen\\Unduplicator\\Tests\\": "Tests"
}
},
"config": {
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"require-dev": {
"netresearch/rte-ckeditor-image": "^12.0",
"phpunit/phpunit": "^11",
"typo3/testing-framework": "8.2.0"
}
}