ovicko / yii2codelab

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yii 2 API Code lab


Yii 2 codelab to learn about RESTful APIs

DIRECTORY STRUCTURE

  assets/             contains assets definition
  commands/           contains console commands (controllers)
  config/             contains application configurations
  controllers/        contains Web controller classes
  mail/               contains view files for e-mails
  models/             contains model classes
  modules/            contains API modules 
  runtime/            contains files generated during runtime
  tests/              contains various tests for the basic application
  vendor/             contains dependent 3rd-party packages
  views/              contains view files for the Web application
  web/                contains the entry script and Web resources

REQUIREMENTS

The minimum requirement by this project template that your Web server supports PHP 7.4.

INSTALLATION

Installation

Clone to install

or

Extract the archive file downloaded to a directory named api that is directly under the Web root. You can then access the application through the following URL:

http://localhost/api/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' => '1234',
    'charset' => 'utf8',
];

About

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:PHP 93.2%Language:Shell 3.1%Language:CSS 1.5%Language:Awk 1.2%Language:Batchfile 1.0%