-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.9 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.9 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
60
61
62
63
64
65
66
67
68
{
"name": "open-dxp/admin-bundle",
"license": "GPL-3.0-or-later",
"type": "opendxp-bundle",
"homepage": "https://www.opendxp.io",
"authors": [
{
"name": "OpenDXP Team",
"email": "contact@opendxp.ch",
"homepage": "https://www.opendxp.io",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/open-dxp/admin-bundle",
"issues": "https://github.com/open-dxp/admin-bundle/issues",
"forum": "https://github.com/open-dxp/admin-bundle/discussions"
},
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"cbschuld/browser.php": "^1.9.6",
"endroid/qr-code": "^4 || ^5.1",
"phpoffice/phpspreadsheet": "^2.2 || ^3.3",
"open-dxp/opendxp": "^1.3.0",
"symfony/webpack-encore-bundle": "^2.1.1"
},
"require-dev": {
"codeception/codeception": "^5.3.5",
"codeception/stub": "^4.3",
"codeception/module-asserts": "^3.2",
"codeception/module-symfony": "^3.8",
"phpstan/phpstan": "2.1.33",
"phpstan/phpstan-symfony": "^2.0.9",
"phpunit/phpunit": "^10.5",
"symfony/dotenv": "^7.4",
"symfony/runtime": "^7.4"
},
"autoload": {
"psr-4": {
"OpenDxp\\Bundle\\AdminBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenDxp\\Bundle\\AdminBundle\\Tests\\": "tests"
},
"files": [
"kernel/Kernel.php"
]
},
"extra": {
"branch-alias": {
"dev-1.x": "1.2.x-dev"
},
"opendxp": {
"bundles": [
"OpenDxp\\Bundle\\AdminBundle\\OpenDxpAdminBundle"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false,
"symfony/runtime": true
}
}
}