-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
35 lines (35 loc) · 1.07 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
{
"name": "bw/stand-with-ukraine-bundle",
"description": "A Symfony bundle that provides StandWithUkraine banner and has some built-in features to block access to your resource for Russian-speaking users",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"BW\\StandWithUkraineBundle\\": "src/",
"BW\\StandWithUkraineBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Victor Bocharsky",
"email": "[email protected]"
}
],
"require": {
"symfony/config": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/event-dispatcher": "^5.4|^6.0",
"symfony/http-foundation": "^5.4|^6.0",
"symfony/http-kernel": "^5.4|^6.0",
"symfony/translation": "^5.4|^6.0",
"symfony/twig-bundle": "^5.4|^6.0",
"twig/twig": "^3.3"
},
"require-dev": {
"dg/bypass-finals": "^1.3",
"symfony/phpunit-bridge": "^5.4|^6.0"
},
"config": {
"sort-packages": true
}
}