-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.46 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.46 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
{
"name": "contao-bootstrap/core",
"description": "Core of Contao Bootstrap extension",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"bootstrap",
"contao",
"core"
],
"authors": [
{
"name": "David Molineus",
"email": "mail@netzmacht.de",
"homepage": "https://netzmacht.de",
"role": "Developer"
},
{
"name": "Alexander Kehr",
"email": "info@kehr-solutions.de",
"homepage": "https://www.kehr-solutions.de",
"role": "Developer"
}
],
"support": {
"email": "mail@netzmacht.de",
"issues": "https://github.com/contao-bootstrap/core/issues",
"wiki": "http://contao-bootstrap.netzmacht.de",
"source": "https://github.com/contao-bootstrap/core"
},
"require": {
"php": "^8.2",
"contao-community-alliance/meta-palettes": "^2.0",
"contao/core-bundle": "^5.3",
"doctrine/dbal": "^3.9 || ^4.0",
"netzmacht/contao-toolkit": "^4.0",
"symfony/config": "^6.4 || ^7.4",
"symfony/dependency-injection": "^6.4 || ^7.4",
"symfony/event-dispatcher-contracts": "^3.0",
"symfony/http-kernel": "^6.4 || ^7.4",
"symfony/routing": "^6.4 || ^7.4",
"symfony/translation-contracts": "^3.0",
"symfony/yaml": "^6.4 || ^7.4",
"twig/twig": "^3.1"
},
"require-dev": {
"contao/manager-plugin": "^2.1",
"netzmacht/phpspec-phpcq-plugin": "@dev",
"phpcq/coding-standard": "^2.1.2",
"phpcq/runner-bootstrap": "@dev",
"phpspec/phpspec": "^7.0 || ^8.0"
},
"conflict": {
"contao/manager-plugin": "<2.1 || >= 3.0",
"netzmacht/contao-bootstrap": "*"
},
"suggest": {
"components/bootstrap": "Bootstrap Components package",
"twbs/bootstrap": "Official Bootstrap package"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"ContaoBootstrap\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\ContaoBootstrap\\Core\\": "spec/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ocramius/package-versions": true,
"php-http/discovery": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "3.1.x-dev",
"dev-master": "3.0.x-dev",
"dev-support/2.x": "2.1.x-dev"
},
"contao-manager-plugin": "ContaoBootstrap\\Core\\ContaoManager\\Plugin"
}
}