Skip to content

Commit 7b81667

Browse files
author
PrivateSniper
committed
Update readme and changelog as of 1.0.9
1 parent 53310c0 commit 7b81667

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55
## [1.0.9] - 2016-11-14
66
### Changed
77
- Add validation, job dispatch and auth into base controller.
8+
- Changed documentation to reflect support only for Laravel 5.3 or above.
89

910
## [1.0.8] - 2016-05-12
1011
### Added

README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,36 @@ Support package for Taskforcedev Laravel packages.
33

44
Provides a consistant way to get user specified layouts, sitename, and user administration rights (using conventions on the user model - if applicable).
55

6-
# Features
6+
## Requirements
7+
8+
- Laravel 5.2+
9+
10+
## Features
711
- Provides a single place to edit config for all Taskforcedev packages (other packages are free to require this also).
812
- Provides authorization helper support if your user model follows some of our known conventions.
913
- Provides user model namespace detection, allows packages to interact with the user model easily.
1014

11-
# Configuration
15+
## Installation
16+
17+
Add the following line to your composer require: (not necessary if you already have a package which depends on laravel-support)
18+
19+
"require": {
20+
"taskforcedev/laravel-support": "1.0.*"
21+
},
22+
23+
Then if you don't already have the following entry in your config/app.php add it also:
24+
25+
Taskforcedev\LaravelSupport\ServiceProvider::class,
26+
27+
28+
### Configuration
1229
This package provides a single place where the following can be configured and used by packages which use this.
1330

1431
- Sitename (aka brand, used in bootstrap navbar on some templates.)
1532

1633
- Layout (which layout to use, provides all packages the same visual theme if set to your own custom layout.).
1734

18-
## Publish Config
35+
### Publish Config
1936
In order to edit the configuration please run the following command to publish the taskforce-support.php file into your apps config directory
2037

2138
<code>php artisan vendor:publish --tag="taskforce-support"</code>

0 commit comments

Comments
 (0)