-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.79 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
{
"name": "postyou/contao-easy-popup",
"description": "Bundle to create easy to use pop-ups with nodes extension.",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"authors": [
{
"name": "Postyou Werbeagentur",
"homepage": "https://postyou.de/"
}
],
"support": {
"issues": "https://github.com/postyou/contao-easy-popup/issues",
"source": "https://github.com/postyou/contao-easy-popup"
},
"require": {
"php": "^8.2",
"composer-runtime-api": "^2.0",
"contao/core-bundle": "^5.3",
"symfony/asset": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/http-kernel": "^6.4",
"terminal42/contao-node": "^1.5",
"twig/twig": "^3.8"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"oveleon/contao-component-style-manager": "^3.4",
"contao/easy-coding-standard": "^6.0",
"contao/rector": "^1.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3"
},
"suggest": {
"oveleon/contao-component-style-manager": "Use the style manager to add css classes to the pop-up."
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Postyou\\ContaoEasyPopupBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": true,
"contao-community-alliance/composer-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"contao-manager-plugin": "Postyou\\ContaoEasyPopupBundle\\ContaoManager\\Plugin"
}
}