forked from AlexLisenkov/laravel-web-push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.06 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
{
"name": "alexlisenkov/laravel-web-push",
"description": "Send push notifications from your backend via the Web Push Protocol",
"type": "Library",
"license": "MIT",
"authors": [
{
"name": "Alex Lisenkov",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"AlexLisenkov\\LaravelWebPush\\": "src/"
}
},
"require": {
"simplito/elliptic-php": "^1.0",
"spomky-labs/base64url": "^2.0",
"ext-gmp": "*",
"ext-openssl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3",
"web-token/jwt-framework": "^1.3",
"ext-mbstring": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^7.4",
"orchestra/testbench": "~3.7"
},
"extra": {
"laravel": {
"providers": [
"AlexLisenkov\\LaravelWebPush\\LaravelWebPushServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}