-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.89 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
{
"name": "bugbuster/contao-dlstats-statistic-export-bundle",
"type": "contao-bundle",
"description": "Contao Module dlstats Add-on: Statistic Export",
"keywords": [
"contao",
"downloads",
"counter",
"export"
],
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Glen Langer",
"homepage": "https://contao.ninja",
"role": "Developer"
},
{
"name": "Alexander Kehr",
"email": "info@kehr-solutions.de",
"homepage": "https://www.kehr-solutions.de"
}
],
"support": {
"issues": "https://github.com/BugBuster1701/contao-dlstats-statistic-export-bundle/issues",
"source": "https://github.com/BugBuster1701/contao-dlstats-statistic-export-bundle"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": true
}
},
"require": {
"php": "^8.1",
"ext-pdo": "*",
"bugbuster/contao-dlstats-bundle": "^1.4",
"contao/core-bundle": "^5.2",
"doctrine/dbal": "^3.6",
"phpoffice/phpspreadsheet": "^1.16",
"symfony/dependency-injection": "^6.4",
"symfony/form": "^6.4",
"symfony/translation": "^6.4 ",
"symfony/validator": "^6.4"
},
"require-dev": {
"contao/manager-plugin": "^2.1"
},
"autoload": {
"psr-4": {
"BugBuster\\DlstatsExportBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "BugBuster\\DlstatsExportBundle\\ContaoManager\\Plugin"
},
"scripts": {
"all": [
"@cs-fixer"
],
"cs-fixer": [
"@ecs",
"@ecs-legacy"
],
"ecs": "@php tools/ecs/vendor/bin/ecs check src/ --config tools/ecs/config/default.php --fix --ansi",
"ecs-legacy": "@php tools/ecs/vendor/bin/ecs check src/Resources/contao/ --config tools/ecs/config/legacy.php --fix --ansi",
"tx-pull": "tx pull -a --minimum-perc 10"
}
}