Skip to content

Commit c74a70b

Browse files
committed
Changed: readme file
1 parent 2de18e1 commit c74a70b

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [v0.0.2](https://github.com/webreinvent/vaahlaravel/compare/v0.0.1...v0.0.2)
8+
9+
> 19 November 2020
10+
11+
- Added: `\VaahArtisan::migrate` & `\VaahArtisan::seed` methods [`ea70519`](https://github.com/webreinvent/vaahlaravel/commit/ea70519bb0946db3db3d30463c35f2dcb1596e8a)
12+
- Added: Facades [`e89b089`](https://github.com/webreinvent/vaahlaravel/commit/e89b089c1850082b8c52141cd403324065e3555e)
13+
714
#### v0.0.1
815

916
> 19 November 2020
1017
1118
- Added: Basic files [`0f1ff21`](https://github.com/webreinvent/vaahlaravel/commit/0f1ff21a97590e942b304f5a3e09601d129eef64)
19+
- Added: Changelog [`cb2693f`](https://github.com/webreinvent/vaahlaravel/commit/cb2693f6e21c843873cd9ab5154b1cba76e3ee47)
1220
- Create README.md [`6caa9c8`](https://github.com/webreinvent/vaahlaravel/commit/6caa9c81cc0e291d9706b984cd1e57032dd140df)

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,33 @@
1+
# VaahLaravel
2+
> Small Laravel Helpers
13
4+
### Installation
5+
```shell script
6+
composer require webreinvent/vaahlaravel
7+
```
8+
9+
Add ServiceProvide in `config/app.php`:
10+
```php
11+
'providers' => [
12+
...
13+
WebReinvent\VaahLaravel\VaahLaravelServiceProvider::class,
14+
...
15+
]
16+
```
17+
18+
#### VaahArtisan
19+
20+
Add Facade in `config/app.php`:
21+
```php
22+
'aliases' => [
23+
...
24+
'VaahArtisan' => \WebReinvent\VaahLaravel\Facades\VaahArtisan::class,
25+
...
26+
]
27+
```
28+
29+
**Method**
30+
```php
31+
\VaahArtisan::migrate($command, $db_connection_nane, $path);
32+
\VaahArtisan::seed($command, $db_connection_nane, $class);
33+
```

0 commit comments

Comments
 (0)