Bläddra i källkod

fixed extension list file location.

Qiang Xue 12 år sedan
förälder
incheckning
333b1f4b1f
2 ändrade filer med 2 tillägg och 2 borttagningar
  1. 1 1
      config/console.php
  2. 1 1
      config/web.php

+ 1 - 1
config/console.php

@@ -6,7 +6,7 @@ return [
 	'preload' => ['log'],
 	'controllerPath' => dirname(__DIR__) . '/commands',
 	'controllerNamespace' => 'app\commands',
-	'extensions' => require(__DIR__ . '/../vendor/yii-extensions.php'),
+	'extensions' => require(__DIR__ . '/../vendor/yiisoft/extensions.php'),
 	'components' => [
 		'cache' => [
 			'class' => 'yii\caching\FileCache',

+ 1 - 1
config/web.php

@@ -3,7 +3,7 @@ $params = require(__DIR__ . '/params.php');
 $config = [
 	'id' => 'bootstrap',
 	'basePath' => dirname(__DIR__),
-	'extensions' => require(__DIR__ . '/../vendor/yii-extensions.php'),
+	'extensions' => require(__DIR__ . '/../vendor/yiisoft/extensions.php'),
 	'components' => [
 		'request' => [
 			'enableCsrfValidation' => true,