hettiger/larawire
最新稳定版本:v0.0.4
Composer 安装命令:
composer require hettiger/larawire
包简介
Merges Laravel with ProcessWire to get the best of both worlds!
README 文档
README
This package is intended to merge Laravel with ProcessWire to get the best of both worlds!
Be aware: This package is work in progress!
Installation
The installation instructions might seem a bit unfamiliar to you but are required as there is no composer package of processwire. Also the releases on GitHub are off so I've forked the original package maintaining the releases myself. I hope you understand that I refuse to put a fork on packagist.
Open your composer.json file and add the following block right above the require section:
// composer.json ... "repositories": [ { "type": "package", "package": { "name": "ryancramerdesign/processwire", "version": "2.5.3", "dist": { "url": "https://github.com/hettiger/ProcessWire/archive/2.5.3.zip", "type": "zip" } } } ], "require": { ...
Now append the require section with following packages:
// composer.json ... "require": { ... "ryancramerdesign/processwire": "2.5.*", "hettiger/larawire": "0.*" }, ...
Run a composer update in your terminal:
composer update -o
After updating composer, add the ServiceProvider to the providers array in app/config/app.php
// app/config/app.php ... 'providers' => array( ... 'Hettiger\Larawire\LarawireServiceProvider', ), ...
You can now install larawire, to merge Laravel with ProcessWire using your terminal:
php artisan larawire:install
Follow the instructions prompted by your terminal.
What's next?
You are able to require public/laravel.php in your template files now. Just think a second about it. This gives you a lot of power ...
Example 1
- Create a template file for your 404-Error-Page
- Require
public/laravel.phpin your new template file - Use Laravel to take care of 404-Error's
- Feel free to use Laravel the way you're used to
- Be aware that ProcessWire URL's can "overwrite" Laravel's routes
- Enjoy full access to ProcessWire's API within Laravel
Example 2
- Create a "Laravel" template file
- Require
public/laravel.phpin your new template file - Use your new "Laravel" template file for each template that should be "Laravel powered"
- Generate routes in Laravel using ProcessWire Selectors (template=name)
- Feel free to use Laravel the way you're used to
- Enjoy full access to ProcessWire's API within Laravel
Example 3
- Mix
Example 1andExample 2 - Go crazy :-)
Future
- Optimized ProcessWire site
- Supporting services for route generation
- Proper Apache and nginx configuration files
- ...
Pull Requests / any form of help are very welcome.
统计信息
- 总下载量: 39
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 14
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-12-02