-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
56 lines (56 loc) · 1.92 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
{
"name": "ezsystems/ezplatform-core",
"description": "eZ Platform core bundles container",
"type": "library",
"license": "GPL-2.0-only",
"authors": [
{
"name": "eZ dev-team & eZ Community",
"homepage": "https://github.com/ezsystems/ezplatform-core/contributors"
}
],
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformCoreBundle\\": "src/EzPlatformCoreBundle/bundle/",
"EzSystems\\EzPlatformEncoreBundle\\": "src/EzPlatformEncoreBundle/bundle/",
"Ibexa\\Platform\\Bundle\\Assets\\": "src/IbexaPlatformAssetsBundle/bundle/",
"Ibexa\\Platform\\Assets\\": "src/IbexaPlatformAssetsBundle/lib/"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\Tests\\EzPlatformCoreBundle\\": "tests/EzPlatformCoreBundle/bundle/",
"Ibexa\\Platform\\Tests\\Assets\\": "tests/IbexaPlatformAssetsBundle/lib/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"ezsystems/ezplatform-kernel": "^1.3@dev",
"symfony/asset": "^5.3.0",
"symfony/config": "^5.3.0",
"symfony/dependency-injection": "^5.3.0",
"symfony/filesystem": "^5.3.0",
"symfony/finder": "^5.3.0",
"symfony/http-kernel": "^5.3.0"
},
"require-dev": {
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"ezsystems/ezplatform-code-style": "^1.0@dev",
"friendsofphp/php-cs-fixer": "^2.15",
"phpunit/phpunit": "^8.3.5",
"matthiasnoback/symfony-dependency-injection-test": "^4.2"
},
"scripts": {
"test": "phpunit -v -c phpunit.xml",
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"check-cs": "php-cs-fixer fix -v --diff --dry-run --show-progress=estimating"
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
},
"config": {
"sort-packages": true
}
}