Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Releases: justcoded/yii2-starter

PHP 7.4 compatibility for User model

11 May 17:56
78be3c0
Compare
Choose a tag to compare
  • Fixed curly braces in User model deprecated error for compatibility with PHP 7.4

Bootstrap4 Kartik widgets

28 Aug 12:39
a7be7a2
Compare
Choose a tag to compare
  • Fixed admin panel pages with Select2 Kartik widgets (enabled Bootstrap4 mode through Yii::$app params)

Bootstrap4

15 Jul 11:06
bd96574
Compare
Choose a tag to compare

Yii doesn't have a good support of all modern frontend features, however it has bootstrap4 package.

This release has a great upgrade - total replacement of bootstrap3 to bootstrap4.

Admin panel also takes a new beta version of AdminLTE 3.0-beta which has much more modern look, than previous version.

Nice looking starter

12 Jul 14:25
Compare
Choose a tag to compare

Pretty stable version.

Fixes:

  • Admin user creation (problems with password and roles)
  • Installation process: automatically creates .env and .htaccess files from examples

Refactored:

  • Removed base module containing console migration commands patches
  • Moved migration templates to database/migrations/templates
  • Removed params.php
  • Set minimal Yii version to 2.0.22

Renamed env example files and add dotenv-sync package

20 Sep 15:00
49c3ad7
Compare
Choose a tag to compare
  • Renamed .env-example in .env.example.
  • Renamed public/.htaccess into public/.htaccess.example
  • Added dotenv-sync package to check diff and sync .env with .env.example files

Fix register page

31 May 12:05
ede32a3
Compare
Choose a tag to compare

Missed use statement for RegisterForm class.

Fix yii rbac/scan for Windows OS

16 Apr 18:29
Compare
Choose a tag to compare

For some reason rbac/scan on Windows OS generated fatal error inside modules/admin/controllers/SettingsController.
Changed class inheritance and this fixed the problem.

Update config files with ::class call, instead of string names

13 Apr 14:38
8bd2212
Compare
Choose a tag to compare
Merge pull request #34 from justcoded/develop

Replaced className with PHP ::class in configs; added yii shell

Fix 'yii serve' command

11 Apr 18:11
Compare
Choose a tag to compare
  • Fix './yii serve' command.
  • Updated configs to PHP 7 syntax (with ::class call, instead of hard-coded text value)

Users migration fix after refactoring

22 Mar 09:40
1fd52b5
Compare
Choose a tag to compare

Fixed existed migration after refactoring Migration to base module