-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
53 lines (53 loc) · 1.61 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
{
"name": "netgen/ezplatform-site-api",
"description": "Netgen's Site API for eZ Platform",
"type": "ezplatform-bundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Petar Španja",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3",
"ext-dom": "*",
"ezsystems/ezplatform-kernel": "^1.2",
"ezsystems/ezplatform-http-cache": "^2.2",
"ezsystems/ezplatform-richtext": "^2.2",
"netgen/ezplatform-search-extra": "^2.5",
"sensio/framework-extra-bundle": "^5.5|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"netgen/tagsbundle": "^4.0",
"composer/package-versions-deprecated": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"netgen/tagsbundle": "Allows using Tag relation Query Types and named Tag objects"
},
"autoload": {
"psr-4": {
"Netgen\\EzPlatformSiteApi\\": "lib",
"Netgen\\Bundle\\EzPlatformSiteApiBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\EzPlatformSiteApi\\Tests\\": "tests/lib",
"Netgen\\Bundle\\EzPlatformSiteApiBundle\\Tests\\": "tests/bundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.4-dev"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always",
"test-integration": "@php vendor/bin/phpunit --colors=always -c phpunit-integration-legacy.xml"
}
}