-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
44 lines (44 loc) · 1022 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "push-notification/push-notification-php-library",
"description": "Send push notification to android|ios devices , support APNs, FCM",
"keywords": [
"apple",
"iphone",
"apns",
"android",
"gcm",
"notification",
"message",
"push",
"pusher"
],
"type": "standalone",
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "^6.3",
"vlucas/phpdotenv":"^2.4.0"
},
"license": "MIT",
"authors": [
{
"name": "jabar asadi",
"email": "asadi.jabar@gmail.com"
}
],
"autoload": {
"psr-0": {
"PushNotification": "src/"
}
},
"scripts": {
"post-install-cmd": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"prefer-stable": true
}