-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
61 lines (61 loc) · 1.78 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
57
58
59
60
61
{
"name": "ezsystems/symfony-tools",
"license": "MIT",
"type": "ezplatform-bundle",
"description": "eZ Systems Symfony Tools",
"authors": [
{
"name": "eZ Systems",
"email": "dev-team@ez.no"
}
],
"autoload": {
"classmap": ["src/lib/Symfony"],
"psr-4": {
"EzSystems\\SymfonyToolsBundle\\": "src/bundle/",
"EzSystems\\SymfonyTools\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\SymfonyTools\\Tests\\": "src/lib/Tests"
}
},
"require": {
"php": "^7.1",
"symfony/symfony": "^3.4.40"
},
"require-dev": {
"cache/integration-tests": "dev-master",
"friendsofphp/php-cs-fixer": "^2.14.6",
"phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
"phpunit/phpunit": "^7.5",
"predis/predis": "^1.1.1",
"symfony/phpunit-bridge": "~3.4|~4.0",
"phpstan/phpstan": "^0.12.88"
},
"conflict": {
"ezsystems/ezpublish-kernel": "7.0 - 7.3.4 | 7.4.0 - 7.4.2"
},
"suggest": {
"ext-redis": "For use with RedisSessionHandler & RedisTagAwareAdapter, usage of native redis v3.1.3+ extension is recommended",
"ext-igbinary": "To improve serialization size and speed for cache and sessions, install igbinary extension "
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"check-cs": "php-cs-fixer fix --dry-run -v --diff --show-progress=estimating",
"test": "phpunit -c phpunit.xml.dist",
"phpstan": "phpstan analyse -c phpstan.neon"
},
"scripts-descriptions": {
"fix-cs": "Automatically fixes code style in all files",
"check-cs": "Run code style checker for all files",
"test": "Run automatic tests",
"phpstan": "Run static code analysis"
}
}