-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
79 lines (79 loc) · 2.85 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ezsystems/ezplatform-richtext",
"description": "eZ Platform RichText Extension, including the RichText FieldType.",
"homepage": "https://ezplatform.com",
"license": "GPL-2.0-only",
"type": "ezplatform-bundle",
"require": {
"php": "^7.3 || ^8.0",
"ext-xsl": "*",
"ext-dom": "*",
"ext-libxml": "*",
"symfony/asset": "^5.1",
"symfony/dependency-injection": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/config": "^5.0",
"symfony/yaml": "^5.0",
"symfony/templating": "^5.0",
"symfony/security-core": "^5.0",
"symfony/form": "^5.0",
"symfony/options-resolver": "^5.0",
"symfony/validator": "^5.0",
"symfony/cache": "^5.0",
"symfony/translation": "^5.0",
"symfony/translation-contracts": "^2.0",
"twig/twig": "^3.0",
"ezsystems/ezplatform-kernel": "^1.3@dev",
"ezsystems/ezplatform-content-forms": "^1.3@dev",
"ezsystems/ezplatform-rest": "^1.3@dev",
"ezsystems/ezplatform-http-cache": "^2.0@dev"
},
"require-dev": {
"ibexa/ci-scripts": "^0.1@dev",
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"ezsystems/ezplatform-solr-search-engine": "^3.3@dev",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-symfony": "^1.2",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.5",
"symfony/finder": "^5.0",
"matthiasnoback/symfony-config-test": "^4.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"friendsofphp/php-cs-fixer": "^2.16",
"ezsystems/ezplatform-code-style": "^0.1"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformRichTextBundle\\": "src/bundle",
"Ibexa\\FieldTypeRichText\\RichText\\": "src/lib/RichText",
"EzSystems\\EzPlatformRichText\\": "src/lib"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\Tests\\EzPlatformRichText\\": "tests/lib",
"EzSystems\\Tests\\EzPlatformRichTextBundle\\": "tests/bundle",
"EzSystems\\IntegrationTests\\EzPlatformRichText\\": "tests/integration",
"Ibexa\\Tests\\FieldTypeRichText\\": "tests/lib/RichText"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml",
"integration": [
"Composer\\Config::disableProcessTimeout",
"phpunit -c phpunit-integration-legacy.xml"
],
"integration-solr": "phpunit -c phpunit-integration-legacy-solr.xml",
"phpstan": "phpstan analyse -c phpstan.neon"
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
},
"config": {
"allow-plugins": false
}
}