forked from FriendsOfSymfony/FOSMessage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.11 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
45
46
{
"name": "friendsofsymfony/message",
"type": "library",
"description": "A framework-agnostic PHP 5.4+ user-to-user messaging library",
"keywords": [
"messaging",
"message",
"notification",
"user-to-user"
],
"homepage": "https://github.com/FriendsOfSymfony/FOSMessage",
"license": "MIT",
"authors": [
{
"name": "Titouan Galopin",
"email": "[email protected]",
"homepage": "http://titouangalopin.com"
}
],
"require": {
"php": ">=5.4",
"doctrine/collections": "^1.3.0",
"webmozart/assert": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.9",
"doctrine/orm": "^2.5.1",
"sllh/php-cs-fixer-styleci-bridge": "~1.3",
"mockery/mockery": "^0.9.4"
},
"autoload": {
"psr-4": {
"FOS\\Message\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FOS\\Message\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}