klsoft/yii3-doctrine-app

Yii 3 web application template that supports Doctrine ORM

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:project

pkg:composer/klsoft/yii3-doctrine-app

This package is auto-updated.

Last update: 2026-02-20 11:23:15 UTC


README

Yii 3 web application template that supports Doctrine ORM.

Requirements

  • PHP 8.2 - 8.5.

How to use

  1. Create a new project from a template using the Composer package manager:
composer create-project klsoft/yii3-doctrine-app your_project
cd your_project
  1. Configure the Doctrine connection in the config/common/params.php.

  2. Run the Doctrine console command:

APP_ENV=dev ./yii doctrine:orm:schema-tool:create
  1. To run the app:
APP_ENV=dev ./yii serve --port=8383

Open your browser to the URL http://localhost:8383