-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
38 lines (38 loc) · 1.04 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
{
"name": "michele-angioni/message-board",
"description": "A message board package for Laravel.",
"keywords": ["laravel", "message board", "notifications"],
"license": "MIT",
"authors": [
{
"name": "Michele Angioni",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"graham-campbell/throttle": "^5.0",
"laravel/framework": "~5.1",
"laravelcollective/html": "~5.1",
"league/fractal": "0.13.*",
"mews/purifier": "~2.0",
"michele-angioni/support": "~2.10",
"tymon/jwt-auth": "0.5.*"
},
"require-dev": {
"mockery/mockery": "^0.9",
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "~4.1",
"sami/sami": "~3.3|~4.0"
},
"autoload": {
"classmap": [
"src/migrations",
"src/seeds"
],
"psr-4": {
"MicheleAngioni\\MessageBoard\\": "src/MicheleAngioni/MessageBoard"
}
},
"minimum-stability": "dev"
}