-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.01 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
{
"name": "fkeloks/ibexa-logs-ui",
"description": "",
"keywords": ["ibexa", "logs", "bundle", "ui", "admin"],
"type": "symfony-bundle",
"homepage": "https://github.com/fkeloks/ibexa-logs-ui",
"license": "MIT",
"authors": [
{
"name": "Florian Bouché",
"email": "contact@florian-bouche.fr"
}
],
"autoload": {
"psr-4": {
"IbexaLogsUi\\Bundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IbexaLogsUi\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.3",
"ext-json": "*",
"ezsystems/ezplatform-admin-ui": "^2.3",
"monolog/monolog": "^2.2",
"symfony/cache": "^5.2",
"symfony/web-profiler-bundle": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5.23"
},
"scripts": {
"tests": "phpunit"
},
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}