-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.02 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
{
"name": "notify-events/php",
"description": "PHP extension to integrate your project with Notify.Events service.",
"version": "1.1.0",
"keywords": ["notification", "alert", "teams", "viber", "telegram", "slack", "sms", "voice", "call"],
"homepage": "https://github.com/notify-events/php",
"type": "extension",
"license": "MIT",
"authors": [
{
"name": "Oleg Matrozov",
"email": "[email protected]"
},
{
"name": "Alex Kustov",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/notify-events/php/issues",
"source": "https://github.com/notify-events/php"
},
"require": {
"php": ">=5.5",
"ext-json": "*"
},
"suggest": {
"ext-curl": "For sending via Curl",
"ext-fileinfo": "Autodetect mime-type for file/image uploads"
},
"autoload": {
"psr-4": {
"notify_events\\php\\": "src"
}
}
}