This repository was archived by the owner on Mar 23, 2020. It is now read-only.
forked from suretarget/Laravel-Reviewable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·53 lines (53 loc) · 1.35 KB
/
composer.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.35 KB
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
47
48
49
50
51
52
53
{
"name": "faustbrian/laravel-reviewable",
"description": "Reviewable Polymorphic Eloquent Models for Laravel 5",
"keywords": [
"laravel",
"framework",
"Laravel-messageable",
"Laravel Messageable",
"Brian Faust",
"faustbrian",
"laravel-reviewable"
],
"license": "MIT",
"authors": [{
"name": "Brian Faust",
"email": "hello@brianfaust.de",
"homepage": "https://brianfaust.de",
"role": "Developer"
}],
"require": {
"php": "^5.5 || ^7.0",
"faustbrian/laravel-service-provider": "^1.0",
"faustbrian/eloquent-presenter": "^2.0",
"illuminate/database": "5.1.* || 5.2.* || 5.3.*"
},
"require-dev": {
"graham-campbell/testbench": "^3.1",
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^5.0",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"psr-4": {
"BrianFaust\\Reviewable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrianFaust\\Tests\\Reviewable\\": "tests"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}