-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
104 lines (104 loc) · 3.33 KB
/
composer.json
File metadata and controls
104 lines (104 loc) · 3.33 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name":"bugbuster/contao-visitors-bundle",
"description":"Contao 5 visitors bundle, allows you to count hits and visits of your website.",
"keywords":["contao","bundle","counter","visits","hits","visitors"],
"type":"contao-bundle",
"homepage":"http://contao.ninja",
"license":"LGPL-3.0-or-later",
"authors":[
{
"name":"Glen Langer",
"homepage":"http://contao.ninja",
"role":"Developer"
}
],
"funding": [
{
"type": "other",
"url": "https://www.amazon.de/wishlist/26HHEJOU03G76"
}
],
"support":{
"issues":"https://github.com/BugBuster1701/contao-visitors-bundle/issues",
"source":"https://github.com/BugBuster1701/contao-visitors-bundle",
"docs":"https://docs.contao.ninja/de/visitors.html",
"forum":"https://community.contao.org/de/forumdisplay.php?28-visitors"
},
"require":{
"php": "^8.3",
"ext-filter": "*",
"ext-mbstring": "*",
"bugbuster/contao-botdetection-bundle":"^1.15",
"bugbuster/contao-clienthints-request-bundle":"^1.0",
"contao/core-bundle": ">=5.6.0,<5.8.0",
"doctrine/dbal": "^3.7 || ^4.3",
"psr/log": "^1.1 || 2.0 || ^3.0",
"symfony/config": "^7.4",
"symfony/dependency-injection": "^7.4",
"symfony/deprecation-contracts": "^3.0",
"symfony/framework-bundle": "^7.4",
"symfony/http-foundation": "^7.4",
"symfony/http-kernel": "^7.4",
"symfony/routing": "^7.4",
"symfony/security-bundle": "^7.4",
"symfony/translation-contracts": "^3.0",
"monolog/monolog": "^3.5.0"
},
"suggest": {
"phpoffice/phpspreadsheet": "Required to enable the export function (composer require phpoffice/phpspreadsheet)"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"friendsofphp/php-cs-fixer": "^3.10",
"phpunit/phpunit": "^9.5.19",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"shipmonk/composer-dependency-analyser": "^1.8"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload":{
"psr-4": {
"BugBuster\\VisitorsBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"extra":{
"contao-manager-plugin": "BugBuster\\VisitorsBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": true
}
},
"scripts": {
"all": [
"@cs-fixer",
"@unit-tests"
],
"cs-fixer": [
"@ecs",
"@ecs-legacy",
"@ecs-template"
],
"ecs": "@php tools/ecs/vendor/bin/ecs check src/ tests/ --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",
"ecs-template": "@php tools/ecs/vendor/bin/ecs check src/Resources/contao/templates --config tools/ecs/config/template.php --fix --ansi",
"unit-tests": "@php vendor/bin/phpunit --testdox --colors=always",
"depcheck": "@php vendor/bin/composer-dependency-analyser --config=depcheck.php --ignore-unknown-classes",
"phpstan": "@php vendor/bin/phpstan analyze src/ tests/ --memory-limit=1G"
}
}