forked from LemonMind/pimcore-message-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.44 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
{
"name": "lemonmind/pimcore-message-bundle",
"description": "Pimcore Message Bundle - send notifications to Discord, Google Chat, Slack, Telegram, E-mail or SMS from Pimcore admin panel",
"type": "pimcore-bundle",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Pawel Filipkowski",
"email": "[email protected]",
"homepage": "https://lemonmind.com"
},
{
"name": "Sebastian Rychert",
"email": "[email protected]",
"homepage": "https://lemonmind.com"
}
],
"require": {
"pimcore/pimcore": "^11.0",
"symfony/notifier": "^6.2.8",
"symfony/slack-notifier": "^6.2.8",
"symfony/discord-notifier": "^6.2.8",
"symfony/sms77-notifier": "^6.2.7",
"symfony/google-chat-notifier": "^6.2.8",
"symfony/telegram-notifier": "^6.2.8",
"pimcore/admin-ui-classic-bundle": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"friendsofphp/php-cs-fixer": "^3.16",
"symfony/phpunit-bridge": "^6.1"
},
"autoload": {
"psr-4": {
"LemonMind\\MessageBundle\\": "/src/MessageBundle"
}
},
"extra": {
"pimcore": {
"bundles": [
"LemonMind\\MessageBundle\\LemonmindMessageBundle"
]
}
},
"scripts": {
"fix": [
"vendor/bin/php-cs-fixer fix --config=.php-cs --using-cache=no --diff --allow-risky=yes",
"vendor/bin/phpstan analyse -c phpstan.neon"
]
}
}