forked from FriendsOfSymfony/FOSMessageBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.39 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
{
"name": "friendsofsymfony/message-bundle",
"type": "symfony-bundle",
"description": "Provides user-to-user messaging features for your Symfony application.",
"keywords": ["symfony", "message", "messaging"],
"homepage": "https://github.com/FriendsOfSymfony/FOSMessageBundle",
"license": "MIT",
"authors": [
{
"name": "Thibault Duplessis",
"email": "[email protected]",
"homepage": "http://ornicar.github.com"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/friendsofsymfony/FOSMessageBundle/contributors"
}
],
"require": {
"php": ">=7.3",
"doctrine/collections": "^1.3",
"symfony/form": "^4.0|^5.0",
"symfony/framework-bundle": "^4.0|^5.0",
"symfony/security-bundle": "^4.0|^5.0",
"symfony/twig-bundle": "^4.0|^5.0"
},
"require-dev": {
"symfony/validator": "^4.0|^5.0",
"symfony/translation": "^4.0|^5.0",
"symfony/yaml": "^4.0|^5.0",
"symfony/templating": "^4.0|^5.0",
"symfony/browser-kit": "^4.0|^5.0",
"symfony/phpunit-bridge": "^4.2.8|^5.0",
"doctrine/orm": "^2.0"
},
"suggest": {
"doctrine/doctrine-bundle": "dev-master"
},
"autoload": {
"psr-4": {
"FOS\\MessageBundle\\": ""
}
}
}