-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
40 lines (40 loc) · 1.21 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
{
"name": "ezsystems/ezplatform-standard-design",
"description": "eZ Platform Standard Design Bundle",
"type": "ezplatform-bundle",
"license": "GPL-2.0-only",
"require": {
"symfony/http-kernel": "^5.0",
"ezsystems/ezplatform-design-engine": "~3.0.0@dev",
"ezsystems/ezplatform-kernel": "^1.0@dev",
"php": "^7.3 || ^8.0"
},
"require-dev": {
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"phpunit/phpunit": "^8.1",
"ezsystems/ezplatform-code-style": "^0.1.0",
"friendsofphp/php-cs-fixer": "^2.16.1",
"ibexa/ci-scripts": "^0.1@dev"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformStandardDesignBundle\\": "src/bundle"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\Tests\\EzPlatformStandardDesignBundle\\": "tests/bundle"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml"
},
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
}
}