mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-01-26 11:44:11 +00:00
21 lines
348 B
PHP
21 lines
348 B
PHP
<?php
|
|
|
|
return [
|
|
/**
|
|
* Namespace for Laravel Models
|
|
*/
|
|
'namespace' => '\\App\\Models\\',
|
|
|
|
/**
|
|
* Path to directory containing JSON files for synchronization
|
|
*/
|
|
'path' => base_path('sync'),
|
|
|
|
/**
|
|
* Array of Model names which controls the synchronization order
|
|
*/
|
|
'order' => [
|
|
//
|
|
],
|
|
];
|