forked from ezsystems/ez-support-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.1 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "ezsystems/ez-support-tools",
"description": "Providing information about the system eZ Platform/Enterprise/Commerce is running on, and eZ install itself",
"license": "GPL-2.0",
"type": "ezplatform-bundle",
"authors": [
{
"name": "eZ Systems",
"email": "dev-team@ez.no"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"ezsystems/ezpublish-kernel": "^8.0@dev",
"ezsystems/ezplatform-admin-ui": "^2.0@dev",
"ocramius/proxy-manager": "^2.2",
"symfony/proxy-manager-bridge": "^4.3",
"zetacomponents/system-information": "^1.1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.14.2",
"phpunit/phpunit": "^8.2"
},
"autoload": {
"psr-4": {
"EzSystems\\EzSupportToolsBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
}
}