Skip to content

Commit 8cb98d8

Browse files
committed
[chore] updates docs
- updates readme, changelog etc for new release
1 parent bddbab6 commit 8cb98d8

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
This project follows [Semantic Versioning](CONTRIBUTING.md).
44

55
---
6+
### v6.0.0 - 10/26/2019
7+
- Add Laravel 6.x Support
8+
- Update Change Log
9+
610
### v5.0.0 - 03/03/2019
711
- Add Laravel 5.8 Support
812
- Update Change Log

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<p align="center">
2-
<img src="https://github.com/codestudiohq/laravel-totem/blob/1.0/resources/assets/img/totem.png?raw=true" alt="Laravel Totem"/>
2+
<img src="https://github.com/codestudiohq/laravel-totem/blob/6.0/resources/assets/img/totem.png?raw=true" alt="Laravel Totem"/>
33
</p>
44
<p align="center">
5-
<a href="https://travis-ci.org/codestudiohq/laravel-totem"><img src="https://travis-ci.org/codestudiohq/laravel-totem.svg?branch=3.0" alt="Build Status"></a>
6-
<a href="https://styleci.io/repos/99050894"><img src="https://styleci.io/repos/99050894/shield?branch=3.0" alt="StyleCI"></a>
5+
<a href="https://travis-ci.org/codestudiohq/laravel-totem"><img src="https://travis-ci.org/codestudiohq/laravel-totem.svg?branch=6.0" alt="Build Status"></a>
6+
<a href="https://styleci.io/repos/99050894"><img src="https://styleci.io/repos/99050894/shield?branch=6.0" alt="StyleCI"></a>
77
<a href="https://packagist.org/packages/studio/laravel-totem"><img src="https://poser.pugx.org/studio/laravel-totem/license.svg" alt="License"></a>
88
</p>
99

@@ -17,8 +17,9 @@ Manage your `Laravel Schedule` from a pretty dashboard. Schedule your `Laravel C
1717

1818
#### Compatiblity Matrix
1919

20-
|<span align="left">Laravel</span> |<span align="left">Totem</span>|
20+
|<span align="left">Laravel</span> |<span align="left">Totem</span>|
2121
|:-------|----------:|
22+
|6.x | 6.x |
2223
|5.8 | 5.x |
2324
|5.7 | 4.x |
2425
|5.6 | 3.x |
@@ -41,7 +42,7 @@ Add `TotemServiceProvider` to the `providers` array of your Laravel v5.4 applica
4142
Studio\Totem\Providers\TotemServiceProvider::class,
4243
```
4344

44-
Once `Laravel Totem` is installed & registered,
45+
Once `Laravel Totem` is installed & registered,
4546

4647
- Run the migration
4748

@@ -51,7 +52,7 @@ php artisan migrate
5152

5253
- Publish `Totem` assets to your public folder using the following command
5354

54-
```
55+
```
5556
php artisan totem:assets
5657
```
5758

@@ -63,7 +64,7 @@ Totems' tables use generic names which may conflict with existing tables in a pr
6364

6465
Please republish totem assets after updating totem to a new version
6566

66-
```
67+
```
6768
php artisan totem:assets
6869
```
6970

@@ -77,9 +78,9 @@ This package assumes that you have a good understanding of [Laravel's Task Sched
7778
* * * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1
7879
```
7980

80-
##### Web Dashboard
81+
##### Web Dashboard
8182

82-
`Laravel Totem`'s dashboard is inspired by `Laravel Horizon`. Just like Horizon you can configure authentication to `Totem`'s dashboard. Add the following to the boot method of your AppServiceProvider or wherever you might seem fit.
83+
`Laravel Totem`'s dashboard is inspired by `Laravel Horizon`. Just like Horizon you can configure authentication to `Totem`'s dashboard. Add the following to the boot method of your AppServiceProvider or wherever you might seem fit.
8384

8485
```php
8586
use Studio\Totem\Totem;
@@ -152,7 +153,7 @@ In the example above, name is an argument while greetings is an option
152153

153154
In addition to the dashboard, Totem provides an artisan command to view a list of scheduled task.
154155

155-
```
156+
```
156157
php artisan schedule:list
157158
```
158159

@@ -169,7 +170,7 @@ php artisan schedule:list
169170

170171
##### Artisan Command to view scheduled tasks
171172
<img src="https://github.com/codestudiohq/laravel-totem/blob/1.0/public/img/screenshots/artisan.png?raw=true" alt="Task List"/>
172-
173+
173174
## Changelog
174175

175176
Important versions listed below. Refer to the [Changelog](CHANGELOG.md) for a full history of the project.
@@ -191,4 +192,4 @@ Bug reports, feature requests, and pull requests can be submitted by following o
191192

192193
This software is released under the [MIT](LICENSE) License.
193194

194-
© 2017 Roshan Gautam, All rights reserved.
195+
© 2019 Roshan Gautam, All rights reserved.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"extra": {
4545
"component": "package",
4646
"branch-alias": {
47-
"dev-3.0": "3.0.x-dev"
47+
"dev-6.0": "6.0.x-dev"
4848
},
4949
"laravel": {
5050
"providers": [

0 commit comments

Comments
 (0)