mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-20 01:55:07 +00:00
Refactor README.md
This commit is contained in:
25
readme.md
25
readme.md
@@ -1,9 +1,30 @@
|
|||||||
|
<p align="center">
|
||||||
|
<a href="https://packagist.org/packages/distinctm/laravel-data-sync" target="_blank"><img src="https://poser.pugx.org/distinctm/laravel-data-sync/d/total.svg" alt="Total Downloads"></a>
|
||||||
|
<a href="https://packagist.org/packages/distinctm/laravel-data-sync" target="_blank"><img src="https://poser.pugx.org/distinctm/laravel-data-sync/v/stable.svg" alt="Latest Stable Version"></a>
|
||||||
|
</p>
|
||||||
|
|
||||||
# Laravel Data Sync
|
# Laravel Data Sync
|
||||||
|
|
||||||
Laravel utility to keep records synced between environments through source control
|
Laravel utility to keep records synced between environments through source control
|
||||||
|
|
||||||
## Installation & Usage
|
## Installation
|
||||||
- Via composer: `composer require distinctm/laravel-data-sync`
|
You can install this package via composer:
|
||||||
|
```bash
|
||||||
|
composer require distinctm/laravel-data-sync
|
||||||
|
```
|
||||||
|
|
||||||
|
Or add this line in your `composer.json`, inside of the `require` section:
|
||||||
|
|
||||||
|
``` json
|
||||||
|
{
|
||||||
|
"require": {
|
||||||
|
"distinctm/laravel-data-sync": "^1.0",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
then run ` composer install `
|
||||||
|
|
||||||
|
## Usage
|
||||||
- Run `php artisan vendor:publish --provider="distinctm\LaravelDataSync\DataSyncBaseServiceProvider" --tag="data-sync-config"` to publish config file. Specify directory for sync data files (default is a new sync directory in the project root)
|
- Run `php artisan vendor:publish --provider="distinctm\LaravelDataSync\DataSyncBaseServiceProvider" --tag="data-sync-config"` to publish config file. Specify directory for sync data files (default is a new sync directory in the project root)
|
||||||
- Create a JSON file for each model, using the model name as the filename. Example: Product.json would update the Product model
|
- Create a JSON file for each model, using the model name as the filename. Example: Product.json would update the Product model
|
||||||
- Use nested arrays in place of hardcoded IDs for relationships
|
- Use nested arrays in place of hardcoded IDs for relationships
|
||||||
|
|||||||
Reference in New Issue
Block a user