-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
102 lines (102 loc) · 2.97 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
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
{
"name": "oveleon/contao-glossary-bundle",
"type": "contao-bundle",
"description": "A glossary extension for the Contao Open Source CMS. Glossaries are organized in archives similar to news and events and can be displayed via a list and reader module.",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Sebastian Zoglowek",
"homepage": "https://github.com/zoglo",
"role": "Developer"
},
{
"name": "Fabian Ekert",
"homepage": "https://github.com/eki89",
"role": "Developer"
},
{
"name": "Daniele Sciannimanica",
"homepage": "https://github.com/doishub",
"role": "Developer"
},
{
"name": "Oveleon",
"homepage": "https://oveleon.de/"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"contao/core-bundle": "^4.13 || ^5.1",
"doctrine/dbal": "^3.3",
"knplabs/knp-menu": "^3.1",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/routing": "^5.4 || ^6.4 || ^7.0",
"symfony/security-core": "^5.4 || ^6.4 || ^7.0",
"symfony/string": "^5.4 || ^6.4 || ^7.0",
"symfony/translation-contracts": "^2.3 || ^3.0"
},
"require-dev": {
"contao/contao-rector": "@dev",
"contao/easy-coding-standard": "^6.12",
"contao/manager-plugin": "^2.3.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"shipmonk/composer-dependency-analyser": "^1.5",
"shipmonk/dead-code-detector": "^0.2.1",
"slam/phpstan-extensions": "^6.0",
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Oveleon\\ContaoGlossaryBundle\\": "src/"
},
"classmap": [
"contao/"
],
"exclude-from-classmap": [
"contao/config/",
"contao/dca/",
"contao/languages/",
"contao/templates/"
]
},
"extra": {
"branch-alias": {
"dev-main": "2.3.x-dev"
},
"contao-manager-plugin": "Oveleon\\ContaoGlossaryBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"contao/manager-plugin": true
}
},
"support": {
"issues": "https://github.com/oveleon/contao-glossary-bundle/issues",
"source": "https://github.com/oveleon/contao-glossary-bundle"
},
"scripts": {
"all": [
"@rector",
"@ecs",
"@phpstan"
],
"ecs": "@php vendor/bin/ecs check --fix",
"rector": "@php vendor/bin/rector --debug",
"phpstan": "@php vendor/bin/phpstan analyze",
"depcheck": "@php vendor/bin/composer-dependency-analyser --config=depcheck.php"
}
}