-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
91 lines (91 loc) · 3.15 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "ibexa/fieldtype-richtext",
"description": "Ibexa RichText Extension, including the RichText FieldType.",
"license": "GPL-2.0-only",
"replace": {
"ezsystems/ezplatform-richtext": "*"
},
"require": {
"php": " >=8.3",
"ext-dom": "*",
"ext-libxml": "*",
"ext-pdo": "*",
"ext-xsl": "*",
"ibexa/content-forms": "~5.0.x-dev",
"ibexa/core": "~5.0.x-dev",
"ibexa/http-cache": "~5.0.x-dev",
"ibexa/rest": "~5.0.x-dev",
"symfony/asset": "^5.1",
"symfony/cache": "^5.0",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/form": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/options-resolver": "^5.0",
"symfony/security-core": "^5.0",
"symfony/templating": "^5.0",
"symfony/translation": "^5.0",
"symfony/translation-contracts": "^2.0",
"symfony/validator": "^5.0",
"symfony/yaml": "^5.0",
"twig/twig": "^3.0"
},
"require-dev": {
"dama/doctrine-test-bundle": "^6.7.5",
"ibexa/admin-ui": "~5.0.x-dev",
"ibexa/ci-scripts": "^0.2@dev",
"ibexa/code-style": "~2.0.0",
"ibexa/design-engine": "~5.0.x-dev",
"ibexa/doctrine-schema": "~5.0.x-dev",
"ibexa/notifications": "~5.0.x-dev",
"ibexa/search": "~5.0.x-dev",
"ibexa/solr": "~5.0.x-dev",
"ibexa/test-core": "~5.0.x-dev",
"ibexa/user": "~5.0.x-dev",
"matthiasnoback/symfony-config-test": "^4.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.5",
"symfony/finder": "^5.0",
"symfony/notifier": "^5.4",
"symfony/proxy-manager-bridge": "^5.3"
},
"autoload": {
"psr-4": {
"Ibexa\\FieldTypeRichText\\": "src/lib/",
"Ibexa\\Contracts\\FieldTypeRichText\\": "src/contracts/",
"Ibexa\\Bundle\\FieldTypeRichText\\": "src/bundle/",
"Ibexa\\Tests\\FieldTypeRichText\\": "tests/lib/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\FieldTypeRichText\\": "tests/bundle/",
"Ibexa\\Tests\\FieldTypeRichText\\": "tests/lib/",
"Ibexa\\Tests\\Integration\\FieldTypeRichText\\": "tests/integration/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml",
"integration": [
"Composer\\Config::disableProcessTimeout",
"phpunit -c phpunit-integration-legacy.xml",
"phpunit -c phpunit-integration.xml"
],
"integration-solr": "phpunit -c phpunit-integration-legacy-solr.xml",
"phpstan": "phpstan analyse -c phpstan.neon"
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
},
"config": {
"allow-plugins": false,
"sort-packages": true
}
}