Skip to content

Commit b232a79

Browse files
committed
Laravel 5.2 combatibility break. End of version 1.0.x
1 parent 0b45c99 commit b232a79

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ Features:
1616

1717
Very simple, you create a folder for each Theme in 'resources/views' and keep all your views seperated. The same goes for assets: create a folder for each theme in your 'public' directory. Set your active theme and you are done. The rest of your application remains theme-agnostic©, which means that when you `View::make('index')` you will access the `index.blade.php` from your selected theme's folder. Same goes for your assets.
1818

19+
## Version Compatibility
20+
21+
Laravel | laravel-theme
22+
:----------|:----------
23+
5.0.x | 1.0.x
24+
5.1.x | 1.0.x
25+
5.2.x | 1.1.x
26+
1927
## Installation
2028

2129
Edit your project's `composer.json` file to require:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"require": {
1414
"php": ">=5.4.0",
15-
"illuminate/support": "5.*"
15+
"illuminate/support": "5.0.*|5.1.*"
1616
},
1717
"suggest": {
1818
"orchestra/asset" : "Intergrates with orchestra/asset. Allows using '@css' and '@js' in blade files"

0 commit comments

Comments
 (0)