From b946b9906dc0bb56c8939bcc1ebe651cfbdae00c Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Sat, 24 May 2014 18:11:59 +0400 Subject: [PATCH] Fixes #3542: Removed requirement to specify `extensions` in application config --- config/console.php | 1 - config/web.php | 1 - 2 files changed, 2 deletions(-) diff --git a/config/console.php b/config/console.php index 462f35b..85297b3 100644 --- a/config/console.php +++ b/config/console.php @@ -10,7 +10,6 @@ return [ 'basePath' => dirname(__DIR__), 'bootstrap' => ['log'], 'controllerNamespace' => 'app\commands', - 'extensions' => require(__DIR__ . '/../vendor/yiisoft/extensions.php'), 'components' => [ 'cache' => [ 'class' => 'yii\caching\FileCache', diff --git a/config/web.php b/config/web.php index fbb7934..f9013d8 100644 --- a/config/web.php +++ b/config/web.php @@ -6,7 +6,6 @@ $config = [ 'id' => 'basic', 'basePath' => dirname(__DIR__), 'bootstrap' => ['log'], - 'extensions' => require(__DIR__ . '/../vendor/yiisoft/extensions.php'), 'components' => [ 'cache' => [ 'class' => 'yii\caching\FileCache',