-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.11 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.11 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": "openium/platinium-bundle",
"description": "Provides push notification on Platinium for your Symfony5 Project",
"type": "symfony-bundle",
"homepage": "http://platinium.openium.fr",
"authors": [
{
"name": "Openium",
"email": "contact@openium.fr"
}
],
"keywords": [
"platinium",
"push-notification",
"push",
"notification",
"openium"
],
"license": [
"MIT"
],
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"symfony/framework-bundle": "~6.4.0",
"symfony/http-client": "^6.4"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"symfony/phpunit-bridge": "^6.4.0",
"rector/rector": "^1.2",
"phpstan/phpstan": "^1.12"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.4.*"
},
"phpstan": {
"includes": [
"phpstan.neon"
]
}
},
"autoload": {
"psr-4": {
"Openium\\PlatiniumBundle\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}