-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
62 lines (62 loc) · 1.87 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
53
54
55
56
57
58
59
60
61
62
{
"name": "netgen/ibexa-site-api",
"description": "Netgen's Site API for Ibexa CMS",
"type": "ibexa-bundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Petar Španja",
"email": "petar@spanja.info"
}
],
"require": {
"php": ">=8.1",
"ext-dom": "*",
"ibexa/core": "^4.6.5",
"ibexa/http-cache": "^4.6",
"ibexa/fieldtype-richtext": "^4.6",
"netgen/ibexa-search-extra": "^3.0",
"sensio/framework-extra-bundle": "^6.1.0",
"twig/twig": "^3.9"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"netgen/tagsbundle": "^5.0.x-dev",
"netgen/ibexa-fieldtype-enhanced-link": "^1.0",
"composer/package-versions-deprecated": "*"
},
"replace": {
"netgen/ezplatform-site-api": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"netgen/tagsbundle": "Allows using Tag relation Query Types and named Tag objects",
"netgen/ibexa-fieldtype-enhanced-link": "Field Type supporting internal/external links with rendering options"
},
"autoload": {
"psr-4": {
"Netgen\\IbexaSiteApi\\": "lib",
"Netgen\\Bundle\\IbexaSiteApiBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\IbexaSiteApi\\Tests\\": "tests/lib",
"Netgen\\Bundle\\IbexaSiteApiBundle\\Tests\\": "tests/bundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "6.2-dev"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always",
"test-integration": "@php vendor/bin/phpunit --colors=always -c phpunit-integration-legacy.xml"
},
"config": {
"allow-plugins": false
}
}