-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
92 lines (92 loc) · 2.77 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
{
"name": "hofff/contao-contact-profiles",
"description": "Various form utilities for Contao CMS.",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"form",
"contao",
"contacts",
"contact profiles"
],
"authors": [
{
"name": "Nicky Hoff",
"email": "[email protected]",
"homepage": "https://hofff.com/",
"role": "Maintainer"
},
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://hofff.com",
"role": "Developer"
}
],
"homepage": "https://hofff.com/",
"support": {
"email": "[email protected]",
"issues": "https://github.com/hofff/contao-contact-profiles/issues",
"source": "https://github.com/hofff/contao-contact-profiles"
},
"require": {
"php": "^7.2 || ^8.0",
"ext-pdo": "*",
"ausi/slug-generator": "^1.1",
"contao/core-bundle": "^4.9",
"doctrine/dbal": "^2.5 || ^3.0",
"hofff/contao-consent-bridge": "^1.3",
"knplabs/knp-menu": "^2.1 || ^3.0",
"menatwork/contao-multicolumnwizard-bundle": "^3.4",
"patchwork/utf8": "^1.3",
"symfony/config": "^4.4 || ^5.1",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/event-dispatcher-contracts": "^1.1 || ^2.0",
"symfony/http-foundation": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/routing": "^4.4 || ^5.0",
"symfony/security-core": "^4.4 || ^5.0"
},
"require-dev": {
"contao/calendar-bundle": "^4.9",
"contao/faq-bundle": "^4.9",
"contao/manager-plugin": "^2.0",
"contao/news-bundle": "^4.9",
"doctrine/coding-standard": "^8.0",
"hofff/contao-social-tags": "^1.1",
"phpcq/runner-bootstrap": "^1.0@dev"
},
"conflict": {
"contao/calendar-bundle": "<4.9 || >=5.0",
"contao/faq-bundle": "<4.9 || >=5.0",
"contao/manager-plugin": "<2.0 || >=3.0",
"contao/news-bundle": "<4.9 || >=5.0",
"hofff/contao-social-tags": "<1.1 || >=2.0"
},
"suggest": {
"contao/calendar-bundle": "Use contact profile for author information",
"contao/faq-bundle": "Use contact profile for author information",
"contao/news-bundle": "Use contact profile for author information",
"hofff/contao-social-tags": "Generate open graph and twitter cards social tags"
},
"autoload": {
"psr-4": {
"Hofff\\Contao\\ContactProfiles\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"contao-components/installer": false,
"contao/manager-plugin": true,
"contao-community-alliance/composer-plugin": true
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.2.x-dev",
"dev-master": "1.1.x-dev"
},
"contao-manager-plugin": "Hofff\\Contao\\ContactProfiles\\ContaoManager\\Plugin"
}
}