mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-01-26 03:34:02 +00:00
35 lines
821 B
JSON
35 lines
821 B
JSON
{
|
|
"name": "nullthoughts/laravel-data-sync",
|
|
"description": "Laravel utility to keep records synced between environments through source control",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "nullthoughts",
|
|
"email": "jani@nullincorporated.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"ext-json": "*"
|
|
},
|
|
"require-dev": {
|
|
"orchestra/testbench": "^5.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4" : {
|
|
"nullthoughts\\LaravelDataSync\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4" : {
|
|
"nullthoughts\\LaravelDataSync\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"nullthoughts\\LaravelDataSync\\DataSyncBaseServiceProvider"
|
|
]
|
|
}
|
|
}
|
|
}
|