-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.2 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.2 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
69
70
71
72
73
74
75
76
77
{
"name": "erdnaxelaweb/ibexadesignintegration",
"type": "symfony-bundle",
"description": "Provide an abstraction layer for the Ibexa CMS in order to streamline the templates development workflow.",
"keywords": [
"ibexa",
"symfony",
"twig",
"integration",
"templating"
],
"license": "MIT",
"require": {
"php": "^8.1",
"erdnaxelaweb/staticfakedesign": "dev-main",
"novactive/ezenhancedimageassetbundle": "^3.0",
"novactive/ezsolrsearchextrabundle": "^3.3",
"novactive/ezstatictemplatesbundle": "^3.0",
"http-interop/http-factory-guzzle": "^1.2",
"ibexa/core": "^4.0",
"ibexa/http-cache": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^10.3",
"symplify/easy-coding-standard": "*",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"ibexa/fieldtype-page": "^4.0",
"ibexa/form-builder": "^4.0",
"ibexa/fieldtype-matrix": "^4.0",
"ibexa/solr": "^4.0",
"ibexa/taxonomy": "^4.0",
"almaviacx/ibexaimportexportbundle": "^0.3",
"phpoffice/phpspreadsheet": "^4.0",
"ibexa/product-catalog": "^4.0",
"ibexa/segmentation": "^4.0"
},
"suggest": {
"ext-dom": "*",
"tanoconsulting/ibexa-migration-bundle":"^1.0",
"phpoffice/phpspreadsheet": "4.0"
},
"authors": [
{
"name": "Florian ALEXANDRE"
}
],
"scripts": {
"check-cs": [
"ecs"
],
"fix-cs": [
"ecs --fix"
]
},
"autoload": {
"psr-4": {
"ErdnaxelaWeb\\IbexaDesignIntegrationBundle\\": "bundle",
"ErdnaxelaWeb\\IbexaDesignIntegration\\": "lib",
"ErdnaxelaWeb\\IbexaDesignIntegration\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"ibexa/post-install": true,
"symfony/flex": true,
"phpstan/extension-installer": true
}
},
"repositories": {
"ibexa": {
"type": "composer",
"url": "https://updates.ibexa.co"
}
}
}