-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.01 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
{
"name": "mpp/message-bundle",
"type": "symfony-bundle",
"description": "Symfony Message Bundle",
"keywords": ["yaml", "email", "twig"],
"license": "MIT",
"authors": [
{
"name": "Gabriel BONDAZ",
"email": "[email protected]",
"homepage": "https://www.idci-consulting.fr"
},
{
"name": "Cyrille DUMORTIER",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"symfony/dependency-injection": "^4.0 | ^5.0 | ^6.0",
"symfony/framework-bundle": "^4.0 | ^5.0 | ^6.0",
"symfony/twig-bundle": "^4.0 | ^5.0 | ^6.0",
"symfony/mailer": "^4.0 | ^5.0 | ^6.0",
"symfony/monolog-bundle": "*",
"symfony/options-resolver": "^4.0 | ^5.0 | ^6.0"
},
"autoload":{
"psr-4":{
"Mpp\\MessageBundle\\": ""
},
"exclude-from-classmap": [
"Resources/",
"Tests/"
]
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}