forked from troelskn/laravel-fillable-relations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 812 Bytes
/
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
{
"name": "troelskn/laravel-fillable-relations",
"description": "Provides HasFillableRelations trait to Eloquent models",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Troels Knak-Nielsen",
"email": "troelskn@gmail.com"
}
],
"require": {
"illuminate/database": ">=5.3"
},
"autoload": {
"psr-4": {
"LaravelFillableRelations\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"orchestra/database": "3.3.1",
"orchestra/testbench": "3.3",
"mockery/mockery": "^0.9.4"
},
"autoload-dev": {
"psr-4": {
"LaravelFillableRelations\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}