-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
37 lines (37 loc) · 934 Bytes
/
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
{
"name": "minishlink/web-push-bundle",
"type": "symfony-bundle",
"description": "Symfony Bundle around the WebPush library",
"keywords": [
"push",
"notifications",
"web",
"WebPush"
],
"homepage": "https://github.com/minishlink/web-push-bundle",
"license": "MIT",
"authors": [
{
"name": "Louis Lagrange",
"email": "[email protected]",
"homepage": "https://github.com/Minishlink"
}
],
"require": {
"php": "^7.2 || ^8.0",
"minishlink/web-push": "^6.0|^7.0|^8.0"
},
"require-dev": {
"symfony/framework-bundle": "^4.2|^5.0",
"phpunit/phpunit": "^7.1",
"symfony/phpunit-bridge": "^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^3.0"
},
"target-dir": "Minishlink/Bundle/WebPushBundle",
"autoload": {
"psr-0": {
"Minishlink\\Bundle\\WebPushBundle": "",
"Tests\\Minishlink\\WebPushBundle": "Tests"
}
}
}