This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
forked from brozot/Laravel-FCM
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
79 lines (79 loc) · 2.2 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "code-lts/laravel-fcm",
"description": "Laravel / Lumen package for Firebase Cloud Messaging",
"keywords": ["laravel", "lumen", "firebase", "notification", "push", "fcm", "firebase cloud messaging"],
"type": "library",
"license": "MIT",
"abandoned": "kreait/firebase-php",
"authors": [
{
"name": "Nicolas Brosy",
"email": "nicolas.brosy@gmail.com"
},
{
"name": "William Desportes",
"email": "williamdes@wdes.fr"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/williamdes"
}
],
"support": {
"email": "williamdes@wdes.fr",
"issues": "https://github.com/code-lts/Laravel-FCM/issues",
"source": "https://github.com/code-lts/Laravel-FCM"
},
"require": {
"php": "^7.1.3 || ^8.0",
"illuminate/support": "^5.6 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11",
"guzzlehttp/guzzle": "^6 || ^7",
"monolog/monolog": "^1.12||^2.0||^3.2"
},
"require-dev": {
"phpunit/phpunit" : "^7 || ^8 || ^9 || ^10 || ^11",
"laravel/laravel": "^5.6 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11",
"phpstan/phpstan": "^1",
"wdes/coding-standard": "^3.2"
},
"autoload": {
"psr-4": {
"LaravelFCM\\": "src/",
"LaravelFCM\\Mocks\\": "tests/mocks"
}
},
"autoload-dev": {
"psr-4": {
"LaravelFCM\\Tests\\": "tests/"
}
},
"scripts": {
"phpunit": "@php phpunit",
"phpstan": "@php phpstan",
"phpcs": "@php phpcs",
"phpcbf": "@php phpcbf",
"test": [
"@phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"LaravelFCM\\FCMServiceProvider"
],
"aliases": {
"FCM": "LaravelFCM\\Facades\\FCM",
"FCMGroup": "LaravelFCM\\Facades\\FCMGroup"
}
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}