-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
85 lines (85 loc) · 3.02 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
80
81
82
83
84
85
{
"name": "spomky-labs/web-push",
"type": "bundle",
"description": "Web-Push framework for PHP",
"keywords": ["push", "notifications", "web", "WebPush", "Push API", "symfony", "bundle"],
"homepage": "https://github.com/spomky-labs/web-push",
"license": "MIT",
"authors": [
{
"name": "Spomky-Labs",
"homepage": "https://github.com/spomky-labs"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"psr/cache": "^1.0|^2.0|^3.0",
"psr/clock": "^1.0",
"psr/log": "^1.1|^2.0|^3.0",
"symfony/config": "^6.2|^7.0",
"symfony/dependency-injection": "^6.2|^7.0",
"symfony/framework-bundle": "^6.2|^7.0",
"symfony/http-kernel": "^6.2|^7.0"
},
"require-dev": {
"doctrine/dbal": "^3.0|^4.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"doctrine/orm": "^2.6|^3.0",
"ekino/phpstan-banned-code": "^1.0",
"infection/infection": "^0.28",
"lcobucci/jwt": "^4.3|^5.0",
"matthiasnoback/symfony-config-test": "^4.2|^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.2|^5.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpbench/phpbench": "^1.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^10.1|^11.0",
"qossmic/deptrac-shim": "^1.0",
"rector/rector": "^1.0",
"roave/security-advisories": "dev-latest",
"symfony/cache": "^6.2|^7.0",
"symfony/clock": "^6.2|^7.0",
"symfony/http-client": "^6.2|^7.0",
"symfony/monolog-bundle": "^3.5",
"symfony/var-dumper": "^6.2|^7.0",
"symfony/yaml": "^6.2|^7.0",
"symplify/easy-coding-standard": "^12.0",
"web-token/jwt-library": "^3.0"
},
"autoload": {
"psr-4" : {
"WebPush\\" : "src/library/",
"WebPush\\Bundle\\": "src/bundle/"
}
},
"autoload-dev": {
"psr-4" : {
"WebPush\\Tests\\" : "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"replace": {
"spomky-labs/web-push-lib": "self.version",
"spomky-labs/web-push-bundle": "self.version"
},
"suggest": {
"ext-mbstring": "Mandatory when using Payload or VAPID extensions",
"ext-openssl": "Mandatory when using Payload or VAPID extensions",
"web-token/jwt-library": "Mandatory if you want to use VAPID using web-token/jwt-framework",
"lcobucci/jwt": "Mandatory if you want to use VAPID using lcobucci/jwt",
"psr/log-implementation": "Recommended to receive logs from the library"
}
}