Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.14 KB

README.md

File metadata and controls

49 lines (34 loc) · 1.14 KB

ReactJs With Yii2

Yii 2 Basic Project with letest Reactjs version 16.02 application best for rapidly creating small projects.

Latest Stable Version Build Status

REQUIREMENTS

The minimum requirement by this project template that your Web server supports PHP >= 5.4.0.

INSTALLATION

Install via Composer

You can install this project using the following command, run the following command from your root project folder:

composer update

You can then access the application through the following URL:

http://localhost/RectJsWithYii2/web/

CONFIGURATION

Database

Edit the file config/db.php with real data, for example:

return [
    'class' => 'yii\db\Connection',
    'dsn' => 'mysql:host=localhost;dbname=yii2basic',
    'username' => 'root',
    'password' => 'xxxx',
    'charset' => 'utf8',
];