-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
executable file
·41 lines (41 loc) · 1.08 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
{
"name": "faustbrian/laravel-leaderboard",
"description": "Points and Ranks for Eloquent models.",
"keywords": ["laravel", "framework", "Laravel-Leaderboard", "Laravel Leaderboard", "Brian Faust", "faustbrian"],
"license": "MIT",
"authors": [{
"name": "Brian Faust",
"email": "[email protected]",
"homepage": "https://brianfaust.de"
}],
"require": {
"php": "^7.0",
"faustbrian/laravel-service-provider": "^1.0",
"illuminate/database": "5.3.*"
},
"require-dev": {
"graham-campbell/testbench": "^3.2",
"mockery/mockery": "^0.9.5",
"phpunit/phpunit": "^5.6"
},
"autoload": {
"psr-4": {
"BrianFaust\\Leaderboard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrianFaust\\Tests\\Leaderboard\\": "tests"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}