-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.14 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
52
{
"name": "elbformat/field-helper-bundle",
"description": "Provides helpers to extract and set structured data from and to ibexa content fields",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"ibexa",
"ezplatform"
],
"authors": [
{
"name": "Hannes Giesenow",
"email": "[email protected]",
"role": "Lead Developer"
},
{
"name": "Ronny Gericke",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Elbformat\\FieldHelperBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Elbformat\\FieldHelperBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"ibexa/oss": "^3.3",
"ext-dom": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.13",
"netgen/tagsbundle": "^4.0"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ibexa/post-install": true,
"symfony/flex": true,
"symfony/thanks": true,
"php-http/discovery": false
}
}
}