forked from tzookb/tbmsg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (37 loc) · 954 Bytes
/
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
{
"name": "tzookb/tbmsg",
"type": "library",
"description": "users messaging system",
"keywords": ["laravel", "php", "messaging", "message-system"],
"homepage": "https://github.com/tzookb/tbmsg",
"license": "MIT",
"authors": [
{
"name": "tzookb",
"email": "tzookb@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3",
"illuminate/contracts": "5.*",
"illuminate/database": "5.*"
},
"require-dev": {
"mockery/mockery": "dev-master",
"phpunit/phpunit": "4.3.*",
"illuminate/filesystem": "5.*",
"league/factory-muffin": "~2.0"
},
"require-all": true,
"autoload": {
"psr-0": {
"Tzookb\\TBMsg": "src/"
},
"classmap": [
"tests/TestCaseDb.php",
"src/migrations/"
]
},
"minimum-stability": "dev"
}