opm87/twigbridge
Composer 安装命令:
composer require opm87/twigbridge
包简介
Adds the power of Twig to Laravel
README 文档
README
Seamlessly implement Twig in Laravel 5.
Requirements
| Laravel | TwigBridge |
|---|---|
| 5.x | >=0.7 |
| 4.2 / 4.1 | 0.6.* |
| 4.0 | 0.5.* |
Installation
Require this package with Composer:
$ composer require rcrowe/twigbridge
Quick Start
Laravel
Once Composer has installed or updated your packages you need to register TwigBridge with
Laravel itself. Open up config/app.php and find the providers key, towards the end of
the file, and add TwigBridge\ServiceProvider::class to the end:
'providers' => [ // ... TwigBridge\ServiceProvider::class, ],
Now find the aliases key, again towards the end of the file, and add
'Twig' => TwigBridge\Facade\Twig::class to have easier access to the TwigBridge
(or Twig_Environment) class:
'aliases' => [ // ... 'Twig' => TwigBridge\Facade\Twig::class, ],
Now that you have both of those lines added to config/app.php we will use Artisan to
publish this package's configuration file:
$ php artisan vendor:publish --provider="TwigBridge\ServiceProvider"
You can begin using Twig like you would any other view:
// resources/views/hello.twig <h1>{{ 'Hello, world' }}<h1>
// app/Http/routes.php Route::get('/', function () { return view('hello'); });
Lumen
For Lumen, you need to load the same Service Provider, but you have to disable the Auth,
Translator and Url extensions in your local configuration. Copy the config/twigbridge.php
file to your local config folder and register the configuration and Service Provider in
bootstrap/app.php:
$app->configure('twigbridge'); $app->register('TwigBridge\ServiceProvider');
Configuration
To tell this package to load your Twig files from multiple locations, update the paths array
in config/view.php.
Your Twig files can have any of the file extensions configured in config/twigbridge.php
under the twig.file_extensions key. By default, .html.twig and .twig are supported.
Usage
You call the Twig template like you would any other view:
view('i_am_twig', [...]);
TwigBridge also supports views in other packages:
view('pagination::simple');
The above rules continue when extending another Twig template:
{% extends "parent" %}
{% extends "pagination::parent" %}
You can call functions with parameters:
{{ link_to_route('tasks.edit', 'Edit', task.id, {'class': 'btn btn-primary'}) }}
All output variables are escaped by default. Use the raw filter to skip escaping.
{{ some_var }}
{{ html_var | raw }}
{{ long_var | str_limit(50) }}
Extensions
Sometimes you want to extend or add new functions to use in your Twig templates. To do this,
add a list of extensions for Twig to load to the enabled array in config/twigbridge.php:
'enabled' => [ 'TwigBridge\Extensions\Example', ]
TwigBridge supports both a string or a closure as a callback, so for example you might implement the Assetic Twig extension as follows:
'enabled' => [ function ($app) { $factory = new Assetic\Factory\AssetFactory($app['path'].'/../some/path/'); $factory->setDebug(false); // etc... return new Assetic\Extension\Twig\AsseticExtension($factory); } ]
TwigBridge comes with the following extensions enabled by default:
- Twig\Extension\DebugExtension
- TwigBridge\Extension\Laravel\Auth
- TwigBridge\Extension\Laravel\Config
- TwigBridge\Extension\Laravel\Dump
- TwigBridge\Extension\Laravel\Form
- TwigBridge\Extension\Laravel\Gate
- TwigBridge\Extension\Laravel\Html
- TwigBridge\Extension\Laravel\Input
- TwigBridge\Extension\Laravel\Session
- TwigBridge\Extension\Laravel\String
- TwigBridge\Extension\Laravel\Translator
- TwigBridge\Extension\Laravel\Url
- TwigBridge\Extension\Loader\Facades
- TwigBridge\Extension\Loader\Filters
- TwigBridge\Extension\Loader\Functions
To enable 0.5.* style Facades, enable the Legacy Facades extension:
TwigBridge\Extension\Laravel\Legacy\Facades
FilterLoader and FunctionLoader
These loader extensions expose Laravel helpers as both Twig functions and filters. Check
out the config/twigbridge.php file to see a list of defined functions and filters. You
can also add your own.
FacadeLoader
The FacadeLoader extension allows you to call any facade you have configured in
config/twigbridge.php. This gives your Twig templates integration with any Laravel class
as well as any other classes you alias.
To use the Laravel integration (or indeed any aliased class and method), add your facades
to the config and call them like URL.to(link) (instead of URL::to($link)).
Functions/Filters/Variables
The following helpers/filters are added by the default Extensions. They are based on Laravel's standard helper functions.
Functions:
asset,action,url,route,secure_url,secure_assetauth_check,auth_guest,auth_usercanconfig_get,config_hasdumpform_*(All theForm::*methods, snake_cased)html_*(All theHtml::*methods, snake_cased)input_get,input_old,input_haslink_to,link_to_asset,link_to_route,link_to_actionsession_has,session_get,csrf_token,csrf_field,method_fieldstr_*(All theStr::*methods, snake_cased)trans,trans_choiceurl_*(All theURL::*methods, snake_cased)
Filters:
camel_case,snake_case,studly_casestr_*(All theStr::*methods, snake_cased)trans,trans_choice
Global variables:
app: theIlluminate\Foundation\Applicationobjecterrors: The$errorsMessageBagfrom the Validator
Artisan Commands
TwigBridge also offers two Artisan commands to aid development:
# Empty the Twig cache: $ php artisan twig:clean # Lint all Twig templates: $ php artisan twig:lint
opm87/twigbridge 适用场景与选型建议
opm87/twigbridge 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.65k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2018 年 09 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「twig」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 opm87/twigbridge 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 opm87/twigbridge 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 opm87/twigbridge 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Shoot aims to make providing data to your templates more manageable
This Symfony bundle integrates PhpSpreadsheet into Symfony using Twig.
A Twig extension to insert css as inline styles with a tag
Caching and compression for Twig assets (JavaScript and CSS).
Twig extensions for Tracy Debugger
Provides code-quality helpers to your Twig templates.
统计信息
- 总下载量: 2.65k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-09-07