-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.41 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
{
"name": "ibexa/standard-design",
"description": "Ibexa Standard Design Bundle",
"type": "ibexa-bundle",
"license": "GPL-2.0-only",
"replace": {
"ezsystems/ezplatform-standard-design": "*"
},
"require": {
"php": " >=8.3",
"ibexa/core": "~5.0.x-dev",
"ibexa/design-engine": "~5.0.x-dev",
"symfony/http-kernel": "^5.0"
},
"require-dev": {
"ibexa/ci-scripts": "^0.2@dev",
"ibexa/code-style": "~2.0.0",
"ibexa/doctrine-schema": "~5.0.x-dev",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Ibexa\\StandardDesign\\": "src/lib/",
"Ibexa\\Bundle\\StandardDesign\\": "src/bundle/",
"Ibexa\\Contracts\\StandardDesign\\": "src/contracts/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\StandardDesign\\": "tests/lib/",
"Ibexa\\Tests\\Bundle\\StandardDesign\\": "tests/bundle/"
}
},
"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"
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
},
"config": {
"allow-plugins": false,
"sort-packages": true
}
}