-
Notifications
You must be signed in to change notification settings - Fork 55
/
composer.json
43 lines (43 loc) · 1.11 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
{
"name": "bkwld/cloner",
"description": "A trait for Laravel Eloquent models that lets you clone of a model and it's relationships, including files.",
"license": "MIT",
"authors": [
{
"name": "Robert Reinhard",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0|~8.0|^9.5.10|^10.5",
"bkwld/upchuck": "^2.6@dev",
"illuminate/database": "^5.5|^6.0|^10.0|^11.0",
"league/flysystem-vfs": "^1.0",
"mockery/mockery": "^1.2.3",
"satooshi/php-coveralls": "^1.0"
},
"suggest": {
"bkwld/upchuck": "Required for replicating of files."
},
"autoload": {
"psr-4": {
"Bkwld\\Cloner\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bkwld\\Cloner\\Stubs\\": "stubs/"
}
},
"extra": {
"laravel": {
"providers": [
"Bkwld\\Cloner\\ServiceProvider"
]
}
}
}