-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
44 lines (44 loc) · 1.31 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
{
"name": "mits87/eloquent-nested-attributes",
"type": "library",
"description": "Nested attributes allow you to save attributes on associated records through the parent. By default nested attribute updating is turned off and you can enable it using the $nested attribute. When you enable nested attributes an attribute writer is defined on the model.",
"keywords": [
"Laravel", "Lumen", "Eloquent", "Nested Attributes"
],
"version": "0.0.7",
"homepage": "https://github.com/mits87/eloquent-nested-attributes",
"license": "MIT",
"authors": [
{
"name": "Piotr Krajewski",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"illuminate/database": "^7.0",
"illuminate/support": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"matt-allan/laravel-code-style": "^0.5.0",
"mockery/mockery": "^1.3"
},
"autoload": {
"psr-4": {
"Eloquent\\NestedAttributes\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Eloquent\\NestedAttributes\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"csfix": "php-cs-fixer fix"
},
"config": {
"sort-packages": true
}
}