forked from ezsystems/ezplatform-richtext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 2.08 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
{
"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",
"ext-xsl": "*",
"ext-dom": "*",
"symfony/dependency-injection": "^4.3",
"symfony/http-kernel": "^4.3",
"symfony/config": "^4.3",
"symfony/yaml": "^4.3",
"symfony/templating": "^4.3",
"symfony/security": "^4.3",
"symfony/form": "^4.3",
"symfony/options-resolver": "^4.3",
"symfony/validator": "^4.3",
"symfony/cache": "^4.3",
"symfony/translation": "^4.3",
"symfony/translation-contracts": "^1.1.2",
"twig/twig": "^2.11",
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"ezsystems/ezpublish-kernel": "^8.0@dev",
"ezsystems/ezplatform-content-forms": "^1.0@dev",
"ezsystems/ezplatform-rest": "^1.0@dev"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"symfony/finder": "^4.3",
"matthiasnoback/symfony-config-test": "^4.1",
"matthiasnoback/symfony-dependency-injection-test": "~3.0",
"friendsofphp/php-cs-fixer": "^2.16",
"ezsystems/ezplatform-code-style": "^0.1"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformRichTextBundle\\": "src/bundle",
"EzSystems\\EzPlatformRichText\\": "src/lib"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\Tests\\EzPlatformRichText\\": "tests/lib",
"EzSystems\\Tests\\EzPlatformRichTextBundle\\": "tests/bundle",
"EzSystems\\IntegrationTests\\EzPlatformRichText\\": "tests/integration"
}
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"_ezplatform_branch_for_behat_tests": "master",
"branch-alias": {
"dev-tmp_ci_branch": "2.0.x-dev",
"dev-master": "2.0.x-dev"
}
}
}