-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.04 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
{
"name": "elbformat/icon-bundle",
"description": "Ibexa fieldtype to select an icon from a predefined set.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"ibexa",
"icon",
"field-type"
],
"authors": [
{
"name": "Hannes Giesenow",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"autoload": {
"psr-4": {
"Elbformat\\IconBundle\\": "src/",
"Elbformat\\IconBundle\\Test\\": "tests/"
}
},
"require": {
"php": "^8.1",
"ezsystems/ezplatform-core": "^2.3",
"ezsystems/ezplatform-admin-ui": "^2.3",
"symfony/finder": "^5.4|^6.4"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/runtime": true,
"composer/package-versions-deprecated": true,
"php-http/discovery": false,
"symfony/flex": true,
"ibexa/post-install": true
}
},
"extra": {
"platform": {
"php": "8.1"
}
}
}