yii-webserver Yii built in development web server

  1. Resources
  2. Requirements
  3. Installation
  4. Usage

Yii built in development web server

Resources

Requirements

  • PHP >= 5.4

Installation

Using composer install

Add package to require-dev section of composer.json file

{
	"require-dev": {
		"likai/yii-webserver": "dev-master"
	}
}

Update composer from terminal

composer update
Config

Set path alias to your your-project/protected/config/console.php file to the first line

Yii::setPathOfAlias('Likai', __DIR__ . '/../../vendor/likai/yii-webserver/src/Likai');

Add command to your your-project/protected/config/console.php file

return array(
    'commandMap' => array(
        'serve' => array(
            'class' => '\\Likai\\YiiWebserver\\ServerCommand',
            'host' => '127.0.0.1',
            'port' => '8888',
        ),
    ),
);
Manual install
  • Download yii-webserver.zip
  • Unzip this file
  • Move directory likai/yii-webserver/src/Likai/YiiWebserver to your-project/protected/extensions/YiiWebserver
Config

Add commandMap to your your-project/protected/config/console.php file

return array(
    'commandMap' => array(
        'serve' => array(
            'class' => 'ext.YiiWebserver.ServerCommand',
            'host' => '127.0.0.1',
            'port' => '8888',
        ),
    ),
);

Usage

yiic serve index [--host=] [--port=] [--root=] [--router=]

DESCRIPTION
        This command provider development web server

PARAMETERS
        --host host address
        --port host port
        --root document root
        --router router script file
0 0
3 followers
191 downloads
Yii Version: Unknown
License: BSD-2-Clause
Category: Others
Developed by: xiaokai
Created on: Jul 16, 2013
Last updated: 10 years ago

Downloads

show all