-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
51 lines (51 loc) · 1.35 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
{
"name": "elasticms/client-helper-bundle",
"description": "An elasticms extension for client helper functions (Graphical frontend, API, ... )",
"type": "symfony-bundle",
"keywords": [
"elasticms"
],
"license": "MIT",
"authors": [
{
"name": "EMS Community",
"homepage": "https://github.com/ems-project/EMSClientHelperBundle/contributors"
}
],
"require": {
"php": "^8.1",
"composer/ca-bundle": "^1.1",
"elasticms/common-bundle": "5.23.*",
"onelogin/php-saml": "^4.1",
"stevenmaguire/oauth2-keycloak": "^5.1",
"symfony-cmf/routing": "^2.3",
"symfony/asset": "^5.4",
"symfony/console": "^5.4",
"symfony/event-dispatcher": "^5.4",
"symfony/mime": "^5.4",
"symfony/security-bundle": "^5.4",
"symfony/security-csrf": "^5.4",
"symfony/twig-bundle": "^5.4",
"symfony/yaml": "^5.4"
},
"require-dev": {
"symfony/test-pack": "^1.0"
},
"autoload": {
"psr-4": {
"EMS\\ClientHelperBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EMS\\ClientHelperBundle\\Tests\\": "tests/"
}
},
"config": {
"lock": false,
"sort-packages": true
},
"scripts": {
"phpunit": "phpunit"
}
}