-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·53 lines (53 loc) · 1.38 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
49
50
51
52
53
{
"name": "draperstudio/laravel-commentable",
"type": "library",
"description": "Commentable Polymorphic Eloquent Models for for Laravel 5",
"keywords": [
"draperstudio",
"laravel-commentable"
],
"homepage": "https://github.com/DraperStudio/laravel-commentable",
"license": "MIT",
"authors": [{
"name": "DraperStudio",
"email": "[email protected]",
"homepage": "http://draperstudio.tech",
"role": "Developer"
}],
"require": {
"php": "^5.6 || ^7.0",
"draperstudio/laravel-service-provider": "^0.1",
"illuminate/database": "5.1.* || 5.2.*",
"kalnoy/nestedset": "^3.1|^4.0"
},
"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": {
"DraperStudio\\Commentable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DraperStudio\\Tests\\Commentable\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}