forked from ezsystems/ezplatform-matrix-fieldtype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.58 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
{
"name": "ezsystems/ezplatform-matrix-fieldtype",
"description": "Repository dedicated to Matrix Field Type for eZ Platform",
"type": "library",
"license": "GPL-2.0-only",
"authors": [
{
"name": "eZ dev-team & eZ Community",
"homepage": "https://github.com/ezsystems/ezplatform-matrix-fieldtype/contributors"
}
],
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformMatrixFieldtypeBundle\\": "src/bundle/",
"EzSystems\\EzPlatformMatrixFieldtype\\": "src/lib/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"EzSystems\\EzPlatformMatrixFieldtype\\Integration\\Tests\\": "tests/integration/"
}
},
"require": {
"php": "^7.3",
"ezsystems/ezpublish-kernel": "^8.0@dev",
"ezsystems/ezplatform-content-forms": "^1.0@dev",
"ezsystems/ezplatform-graphql": "^2.0@dev",
"symfony/http-kernel": "^4.3",
"symfony/console": "^4.3",
"symfony/config": "^4.3",
"symfony/dependency-injection": "^4.3",
"symfony/yaml": "^4.3",
"symfony/form": "^4.3",
"symfony/options-resolver": "^4.3"
},
"require-dev": {
"ezsystems/ezplatform-code-style": "^0.1.0",
"friendsofphp/php-cs-fixer": "^2.16.0",
"phpunit/phpunit": "^6.4"
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}