-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 967 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
{
"name": "likemusic/laravel-eloquent-fillable-relations",
"description": "Allows automatically fill model's relations by attributes without create them in database. Also adds pushOrFail() model's method that save model with relations (like push()-method) in one transaction.",
"type": "library",
"require": {
"illuminate/database": "^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": " ^7.5.15 || ^8.4 || ^9.3.3",
"orchestra/testbench": "~4.0"
},
"license": "MIT",
"authors": [
{
"name": "Valerij Ivashchenko",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Likemusic\\LaravelFillableRelationsWithoutAutosave\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Likemusic\\LaravelFillableRelationsWithoutAutosave\\Tests\\": "tests"
}
}
}