forked from GwendolenLynch/msgphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 816 Bytes
/
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
{
"description": "Composer configuration for bulk CI testing of packages",
"require-dev": {
"wikimedia/composer-merge-plugin": "^1.4",
"friendsofphp/php-cs-fixer": "^2.13",
"phpstan/phpstan": "^0.10",
"phpstan/phpstan-phpunit": "^0.10",
"phpunit/phpunit": "^7.3",
"ro0nl/link": "^1.0",
"symfony/messenger": "@dev",
"twig/twig": "^2.5"
},
"autoload-dev": {
"psr-4": {
"MsgPhp\\": "src/"
}
},
"extra": {
"merge-plugin": {
"include": [
"src/*/composer.json"
]
}
},
"replace": {
"msgphp/domain": "*",
"msgphp/eav": "*",
"msgphp/eav-bundle": "*",
"msgphp/user": "*",
"msgphp/user-bundle": "*"
}
}