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
|
{
"name": "minishlink/web-push",
"type": "library",
"description": "Web Push library for PHP",
"keywords": ["push", "notifications", "web", "WebPush", "Push API"],
"homepage": "https://github.com/web-push-libs/web-push-php",
"license": "MIT",
"authors": [
{
"name": "Louis Lagrange",
"email": "lagrange.louis@gmail.com",
"homepage": "https://github.com/Minishlink"
}
],
"scripts": {
"test:unit": "./vendor/bin/phpunit --color",
"test:typing": "./vendor/bin/phpstan analyse --level max src",
"test:syntax": "./vendor/bin/php-cs-fixer fix ./src --dry-run --stop-on-violation --using-cache=no"
},
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-gmp": "*",
"lib-openssl": "*",
"guzzlehttp/guzzle": "^6.2",
"web-token/jwt-signature": "^1.0",
"web-token/jwt-key-mgmt": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"phpstan/phpstan": "0.11.2",
"friendsofphp/php-cs-fixer": "^2.14"
},
"autoload": {
"psr-4" : {
"Minishlink\\WebPush\\" : "src"
}
}
}
|