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