forked from ezsystems/ezplatform-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.64 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
{
"name": "ezsystems/ezplatform-user",
"description": "eZ Platform User bundle",
"type": "ezplatform-bundle",
"license": "GPL-2.0-only",
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformUserBundle\\": "src/bundle/",
"EzSystems\\EzPlatformUser\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\EzPlatformUserBundle\\Tests\\": "tests/bundle/",
"EzSystems\\EzPlatformUser\\Tests\\": "tests/lib/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"ezsystems/ezpublish-kernel": "^8.0@dev",
"ezsystems/ezplatform-admin-ui": "^2.0@dev",
"jms/translation-bundle": "^1.4",
"symfony/dependency-injection": "^4.3",
"symfony/http-kernel": "^4.3",
"symfony/translation": "^4.3",
"symfony/security": "^4.3",
"symfony/http-foundation": "^4.3",
"symfony/config": "^4.3",
"symfony/options-resolver": "^4.3",
"symfony/event-dispatcher": "^4.3",
"symfony/intl": "^4.3",
"symfony/validator": "^4.3",
"symfony/form": "^4.3",
"symfony/routing": "^4.3",
"symfony/swiftmailer-bundle": "^3.2",
"twig/twig": "^2.11"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16.0",
"ezsystems/ezplatform-code-style": "^0.1.0",
"phpunit/phpunit": "^8.2"
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}