-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.39 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 2.39 KB
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
{
"name": "ibexa/user",
"description": "Ibexa User bundle",
"type": "ibexa-bundle",
"license": "(GPL-2.0-only or proprietary)",
"replace": {
"ezsystems/ezplatform-user": "*"
},
"autoload": {
"psr-4": {
"Ibexa\\User\\": "src/lib/",
"Ibexa\\Bundle\\User\\": "src/bundle/",
"Ibexa\\Contracts\\User\\": "src/contracts/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\User\\": "tests/bundle/",
"Ibexa\\Tests\\User\\": "tests/lib/",
"Ibexa\\Tests\\Integration\\User\\": "tests/integration/"
}
},
"require": {
"php": " >=8.3",
"ibexa/content-forms": "~6.0.x-dev",
"ibexa/core": "~6.0.x-dev",
"ibexa/notifications": "~6.0.x-dev",
"jms/translation-bundle": "^2.4",
"symfony/config": "^7.4",
"symfony/dependency-injection": "^7.4",
"symfony/event-dispatcher": "^7.4",
"symfony/form": "^7.4",
"symfony/http-foundation": "^7.4",
"symfony/http-kernel": "^7.4",
"symfony/intl": "^7.4",
"symfony/options-resolver": "^7.4",
"symfony/routing": "^7.4",
"symfony/security-core": "^7.4",
"symfony/security-http": "^7.4",
"symfony/translation": "^7.4",
"symfony/validator": "^7.4",
"twig/twig": "^3.0"
},
"require-dev": {
"ibexa/code-style": "~2.0.0",
"ibexa/design-engine": "~6.0.x-dev",
"ibexa/doctrine-schema": "~6.0.x-dev",
"ibexa/fieldtype-richtext": "~6.0.x-dev",
"ibexa/http-cache": "~6.0.x-dev",
"ibexa/rector": "~6.0.x-dev",
"ibexa/rest": "~6.0.x-dev",
"ibexa/search": "~6.0.x-dev",
"matthiasnoback/symfony-dependency-injection-test": "^5.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^9.6",
"symfony/phpunit-bridge": "^7.4"
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"phpstan": "phpstan analyse",
"test": "phpunit -c phpunit.xml"
},
"extra": {
"branch-alias": {
"dev-main": "6.0.x-dev"
}
},
"config": {
"allow-plugins": false,
"sort-packages": true
}
}