-
Notifications
You must be signed in to change notification settings - Fork 301
/
composer.json
54 lines (54 loc) · 1.53 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
{
"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": "[email protected]",
"homepage": "https://github.com/Minishlink"
}
],
"scripts": {
"fix:syntax": "./vendor/bin/php-cs-fixer fix ./src --using-cache=no",
"fix:syntax_tests": "./vendor/bin/php-cs-fixer fix ./tests --using-cache=no",
"test:unit": "./vendor/bin/phpunit",
"test:unit_offline": "./vendor/bin/phpunit --exclude-group=online",
"test:typing": "./vendor/bin/phpstan analyse",
"test:syntax": "./vendor/bin/php-cs-fixer fix ./src --dry-run --stop-on-violation --using-cache=no",
"test:syntax_tests": "./vendor/bin/php-cs-fixer fix ./tests --dry-run --stop-on-violation --using-cache=no"
},
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^7.4.5",
"web-token/jwt-library": "^3.3.0|^4.0.0",
"spomky-labs/base64url": "^2.0.4"
},
"suggest": {
"ext-bcmath": "Optional for performance.",
"ext-gmp": "Optional for performance."
},
"require-dev": {
"phpunit/phpunit": "^10.5.9",
"phpstan/phpstan": "^1.10.57",
"friendsofphp/php-cs-fixer": "^v3.48.0"
},
"autoload": {
"psr-4": {
"Minishlink\\WebPush\\": "src"
}
}
}