forked from suretarget/Laravel-Commentable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·48 lines (48 loc) · 1.32 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
47
48
{
"name": "faustbrian/laravel-commentable",
"description": "Commentable Polymorphic Eloquent Models for for Laravel 5",
"keywords": ["laravel", "framework", "Laravel-Commentable", "Laravel Commentable", "Brian Faust", "faustbrian"],
"license": "MIT",
"authors": [{
"name": "Brian Faust",
"email": "[email protected]",
"homepage": "https://brianfaust.me"
}],
"require": {
"php": "^7.0",
"illuminate/support": "5.3.* || 5.4.* || 5.5.*",
"illuminate/database": "5.3.* || 5.4.* || 5.5.*",
"kalnoy/nestedset": "^4.1"
},
"require-dev": {
"graham-campbell/testbench": "^3.3",
"mockery/mockery": "^0.9.5",
"phpunit/phpunit": "^6.1"
},
"autoload": {
"psr-4": {
"BrianFaust\\Commentable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrianFaust\\Tests\\Commentable\\": "tests"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"BrianFaust\\Commentable\\CommentableServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}