-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
31 lines (31 loc) · 896 Bytes
/
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
{
"name": "khrizt/push-notiphications",
"description": "Push notifications library for Apns and Fcm (or Gcm) for PHP",
"keywords": ["apple", "iphone", "apns", "android", "google", "gcm", "fcm", "notification", "message", "push", "pusher", "notiphications"],
"homepage": "https://github.com/khrizt/PushNotiphications",
"type": "standalone",
"license": "Apache-2.0",
"authors": [
{
"name": "Christian Fuentes",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/khrizt/PushNotiphications/contributors"
}
],
"require": {
"php": ">=7.1",
"symfony/console": "~3.0"
},
"config": {
"bin-dir": "bin"
},
"bin": ["send"],
"autoload": {
"psr-0": {
"Khrizt": "src/"
}
}
}