-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.81 KB
/
Copy pathcomposer.json
File metadata and controls
66 lines (66 loc) · 1.81 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
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
{
"name": "heimrichhannot/contao-cleaner-bundle",
"description": "This bundle adds cleaner functionality for periodically removing arbitrary entities and/or files fulfilling a certain condition in Contao (using TL_CRON or your server's cron).",
"keywords": [
"contao",
"cleaner",
"entity",
"file",
"bundle",
"developer"
],
"type": "contao-bundle",
"homepage": "https://github.com/heimrichhannot/contao-cleaner-bundle",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Heimrich & Hannot",
"email": "digitales@heimrich-hannot.de",
"homepage": "https://www.heimrich-hannot.de",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"contao/core-bundle": "^5.3",
"heimrichhannot/contao-utils-bundle": "^3.4",
"guzzlehttp/promises": "^2.0",
"psr/container": "^1.0 || ^2.0 || ^3.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/event-dispatcher-contracts": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"rector/rector": "^2.0",
"contao/contao-rector": "dev-main",
"symplify/easy-coding-standard": "^12.5",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"contao/core-bundle": "^4.13",
"contao/manager-plugin": "^2.0"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"HeimrichHannot\\CleanerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HeimrichHannot\\CleanerBundle\\Test\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\CleanerBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"php-http/discovery": false,
"contao/manager-plugin": false
}
}
}