-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
50 lines (50 loc) · 1.09 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
{
"name": "cuyz/notiz",
"type": "typo3-cms-extension",
"description": "Handle any type of notification in TYPO3 with ease: emails, SMS, Slack and more. Listen to your own events or provided ones (scheduler task finishing, extension installed, etc…).",
"keywords": [
"typo3",
"notification",
"event",
"mails",
"logs",
"slack"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Romain Canon",
"email": "romain.hydrocanon@gmail.com"
},
{
"name": "Nathan Boiron",
"email": "nathan.boiron@gmail.com"
}
],
"require": {
"typo3/cms-core": "^8.7.0 || ^9.5.17",
"romm/configuration-object": "^1.10 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^4.7 || ^5.6",
"satooshi/php-coveralls": "^1.0"
},
"autoload": {
"psr-4": {
"CuyZ\\Notiz\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"CuyZ\\Notiz\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/notiz": "self.version"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms"
}
}
}