How to Install Yii on Ubuntu 16.04 LTS?
Introduction
Yii is a high performance, component-based PHP framework. It is used to develop modern web application rapidly. The name Yii is an acronym for Yes It Is!
In this tutorial, we will install Yii. Before installing make sure, we meet all the given prerequisites.
Prerequisites
- LAMP Stack
- Composer
- PHP 5.4.0 or higher (Prefer PHP7)
- And following PHP extensions
Yii Installation
We are using composer to install Yii, the following command is used to create application.
Yii2 Directory Structure
Crafting application
Use the following command to get application.
Provide Hidden Tokens
It will ask for hidden tokens that are used to get API permission from the GitHub. We can get these tokens from the Github.com by login our Git account.
Following is the sequence that we need to follow to generate tokens.
go to user profile → select settings → Developer settings → Personal access tokens → generate new tokens.
It will open the following form.
Scroll to down page and click on Generate token button.
It will create a token that looks like the following.
Copy these tokens and paste into the terminal where process asking for hidden tokens. Tokens will not display, so just press enter.
Run Application
After this process, an application tutoraspire is created. We can access it to the browser by using localhost/tutoraspire/web/. It will show a home page that looks like the following.
Check Requirements
This application contains a requirements.php file that can be used to check that our application meets all its requirements or not.
Use localhost/tutoraspire/requirements.php to the browser and it will display following output.
Well, we have created a fresh Yii application. Now, we can design and developed it according to our requirement.