32 lines
465 B
Markdown
32 lines
465 B
Markdown
|
# BAG Laravel Helper
|
||
|
|
||
|
This package provides Laravel commands to execute BAG for Laravel Stack.
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
Edit your `composer.json` file to include the following dependency:
|
||
|
|
||
|
```
|
||
|
"require": {
|
||
|
"bag/laravel-helper": "dev-main"
|
||
|
},
|
||
|
"repositories": [
|
||
|
{
|
||
|
"type": "vcs",
|
||
|
"url": "git@git.bluesquare.io:bag/laravel-helper.git"
|
||
|
}
|
||
|
]
|
||
|
```
|
||
|
|
||
|
Then run:
|
||
|
|
||
|
```bash
|
||
|
composer update bag/laravel-helper
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```
|
||
|
php artisan bag:migrations
|
||
|
```
|