-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
95 lines (95 loc) · 3.53 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
{
"name": "terminal42/notification_center",
"description": "Notification Center extension for Contao Open Source CMS",
"keywords": ["contao", "notification", "center"],
"type": "contao-bundle",
"license": "LGPL-3.0-or-later",
"authors":[
{
"name":"terminal42 gmbh",
"homepage":"https://www.terminal42.ch"
}
],
"funding": [{
"type": "github",
"url": "https://github.com/terminal42"
}, {
"type": "other",
"url": "https://ko-fi.com/terminal42"
}],
"support": {
"issues": "https://github.com/terminal42/contao-notification_center/issues",
"source": "https://github.com/terminal42/contao-notification_center",
"forum": "https://community.contao.org",
"docs": "https://extensions.terminal42.ch/docs/notification-center/"
},
"require": {
"php": "^8.1",
"composer-plugin-api": "^2.0",
"codefog/contao-haste": "^5.2",
"contao/core-bundle": "^4.13.50 || ~5.3.14 || ^5.4.4",
"doctrine/dbal": "^3.4",
"doctrine/orm": "^2.19",
"knplabs/knp-menu": "^3.1",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^2.0 || ^3.0",
"ramsey/collection": "^1.2",
"soundasleep/html2text": "^2.0",
"symfony/asset": "^5.4 || ^6.0 || ^7.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
"symfony/event-dispatcher-contracts": "^2.0 || ^3.0",
"symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
"symfony/mailer": "^5.4 || ^6.0 || ^7.0",
"symfony/mime": "^5.4 || ^6.0 || ^7.0",
"symfony/routing": "^5.4 || ^6.0 || ^7.0",
"symfony/security-core": "^5.4 || ^6.0 || ^7.0",
"symfony/service-contracts": "^1.1 || ^2.0 || ^3.0",
"symfony/translation-contracts": "^2.0 || ^3.0",
"symfony/uid": "^5.4 || ^6.0 || ^7.0",
"terminal42/dcawizard": "^3.0",
"twig/twig": "^3.8"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"contao/newsletter-bundle": "^4.13 || ^5.0",
"contao/test-case": "^4.13 || ^5.3",
"league/flysystem-memory": "^3.25",
"phpunit/phpunit": "^9.6",
"symfony/expression-language": "^5.4 || ^6.0 || ^7.0",
"terminal42/contao-build-tools": "dev-main"
},
"suggest": {
"terminal42/contao-notification-center-pro": "Turn your Notification Center 2 into a pro version and benefit from logs, various testing tools and your own Simple Tokens that can be completely customized with Twig."
},
"autoload": {
"psr-4": {
"Terminal42\\NotificationCenterBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Terminal42\\NotificationCenterBundle\\Test\\": "tests/"
}
},
"scripts": {
"unit-tests": "@php vendor/bin/phpunit"
},
"extra": {
"contao-manager-plugin": "Terminal42\\NotificationCenterBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"terminal42/contao-build-tools": true,
"contao-components/installer": false,
"contao/manager-plugin": false,
"contao-community-alliance/composer-plugin": false,
"php-http/discovery": false
},
"sort-packages": true
},
"prefer-stable": true
}