-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.05 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
{
"name": "meritoo/flash-bundle",
"description": "Mechanisms, extensions and resources related to Symfony Flash Messages",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Meritoo.pl",
"email": "[email protected]"
}
],
"require": {
"meritoo/common-bundle": "^0.1.0",
"symfony/templating": "^4.1",
"symfony/twig-bundle": "^4.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"infection/infection": "^0.10.5",
"phploc/phploc": "^4.0",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^7.3",
"sebastian/phpcpd": "^4.0",
"squizlabs/php_codesniffer": "^2.9",
"symfony/phpunit-bridge": "^4.1",
"symfony/yaml": "^4.1"
},
"autoload": {
"psr-4": {
"Meritoo\\FlashBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Meritoo\\Test\\FlashBundle\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}