-
Notifications
You must be signed in to change notification settings - Fork 311
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.68 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.68 KB
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
{
"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": {
"fix:syntax": "./vendor/bin/php-cs-fixer fix ./src",
"fix:syntax_tests": "./vendor/bin/php-cs-fixer fix ./tests",
"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",
"test:syntax_tests": "./vendor/bin/php-cs-fixer fix ./tests --dry-run --stop-on-violation"
},
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^7.9.2",
"spomky-labs/base64url": "^2.0.4",
"symfony/polyfill-php83": "^1.33",
"web-token/jwt-library": "^3.4.9|^4.0.6"
},
"suggest": {
"ext-bcmath": "Optional for performance.",
"ext-gmp": "Optional for performance."
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.92.2",
"phpstan/phpstan": "^2.1.33",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^11.5.46|^12.5.2",
"symfony/polyfill-iconv": "^1.33"
},
"autoload": {
"psr-4": {
"Minishlink\\WebPush\\": "src"
}
}
}