Download the PHP package cst/yii-illuminate without Composer
On this page you can find all versions of the php package cst/yii-illuminate. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cst/yii-illuminate
More information about cst/yii-illuminate
Files in cst/yii-illuminate
Package yii-illuminate
Short Description A bridge to Laravel awesomeness
License proprietary
Informations about the package yii-illuminate
This package makes easy the integration with some Laravel components
Requirements
The following versions of PHP are supported.
- PHP 5.6
- HHVM (not tested)
Installation
You can install the package using the Composer package manager. You can install it by running this command in your project root:
Components
Migrate command
Supercharges Yii MigrateCommand
with all the functionality of the Laravel Schema Builder
Add the following block to your config file:
Queues
Queues allow you to defer the processing of a time consuming task, such as sending an e-mail, until a later time, thus drastically speeding up the web requests to your application.
RedisQueue
Add the following block to your config file:
Configuring queue command
Add the following block to your config file:
Queuing jobs:
or
Helper Functions
app(string $component = null)
Get the Yii App instance. It's a shortcut for Yii::app(). You can also pass the component name to get the instance.
t(string $category, string $message, array $params = [], string $source = null, string $language = null)
Yii::t() shortcut for translating messages.
view(string $path, array $data, bool $return)
Renders evaluated view contents for the given view. Replaces the typical $this->render(...)
viewPartial(string $path, array $data, bool $return)
Renders evaluated view contents for the given view and it does not apply a layout to the rendered result. Replaces the typical $this->renderPartial(...)
request(string $key, $default = null)
Get an instance of the current request or an input item from the request.
asset(string $path)
Generate an asset path for the application theme.
url(string $path, array $parameters, bool $secure)
Generate a url for the application.
All versions of yii-illuminate with dependencies
illuminate/bus Version 5.2.*
illuminate/console Version 5.2.*
illuminate/events Version 5.2.*
illuminate/database Version 5.2.*
illuminate/encryption Version 5.2.*
illuminate/redis Version 5.2.*
illuminate/queue Version 5.2.*
illuminate/view Version 5.2.*
illuminate/support Version 5.2.*
yiisoft/yii Version ~1.1.16