-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
72 lines (72 loc) · 2.3 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
{
"name": "ibexa/content-forms",
"description": "Use Symfony Forms with Ibexa Content & User objects",
"license": "GPL-2.0-only",
"type": "ibexa-bundle",
"replace": {
"ezsystems/ezplatform-content-forms": "*"
},
"require": {
"php": " >=8.3",
"ext-json": "*",
"ibexa/core": "~5.0.x-dev",
"jms/translation-bundle": "^1.5",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/form": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/options-resolver": "^5.0",
"symfony/routing": "^5.0",
"symfony/translation": " ^5.0",
"symfony/validator": "^5.0",
"symfony/yaml": "^5.0"
},
"require-dev": {
"behat/behat": "^3.5",
"ibexa/behat": "~5.0.x-dev",
"ibexa/ci-scripts": "^0.2@dev",
"ibexa/code-style": "~2.0.0",
"ibexa/doctrine-schema": "~5.0.x-dev",
"ibexa/http-cache": "~5.0.x-dev",
"ibexa/notifications": "~5.0.x-dev",
"ibexa/rest": "~5.0.x-dev",
"ibexa/test-core": "~5.0.x-dev",
"ibexa/user": "^5.0.x-dev",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Ibexa\\ContentForms\\": "src/lib/",
"Ibexa\\Bundle\\ContentForms\\": "src/bundle/",
"Ibexa\\Contracts\\ContentForms\\": "src/contracts/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\ContentForms\\": "tests/bundle/",
"Ibexa\\Tests\\Integration\\ContentForms\\": "tests/integration/",
"Ibexa\\Tests\\ContentForms\\": "tests/lib/"
}
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
},
"config": {
"allow-plugins": {
"*/*": false
},
"sort-packages": true
},
"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.dist",
"test-integration": "phpunit -c phpunit.integration.xml.dist"
}
}