adjusted basic app to use the new yii extension installer.
This commit is contained in:
parent
e684a34f6a
commit
130449e2be
@ -6,8 +6,7 @@ return [
|
||||
'preload' => ['log'],
|
||||
'controllerPath' => dirname(__DIR__) . '/commands',
|
||||
'controllerNamespace' => 'app\commands',
|
||||
'modules' => [
|
||||
],
|
||||
'extensions' => require(__DIR__ . '/../vendor/yii-extensions.php'),
|
||||
'components' => [
|
||||
'cache' => [
|
||||
'class' => 'yii\caching\FileCache',
|
||||
|
@ -3,6 +3,7 @@ $params = require(__DIR__ . '/params.php');
|
||||
$config = [
|
||||
'id' => 'bootstrap',
|
||||
'basePath' => dirname(__DIR__),
|
||||
'extensions' => require(__DIR__ . '/../vendor/yii-extensions.php'),
|
||||
'components' => [
|
||||
'request' => [
|
||||
'enableCsrfValidation' => true,
|
||||
|
@ -10,7 +10,6 @@ defined('YII_ENV') or define('YII_ENV', 'test');
|
||||
|
||||
require_once(__DIR__ . '/../vendor/autoload.php');
|
||||
require_once(__DIR__ . '/../vendor/yiisoft/yii2/yii/Yii.php');
|
||||
Yii::importNamespaces(require(__DIR__ . '/../vendor/composer/autoload_namespaces.php'));
|
||||
|
||||
$config = require(__DIR__ . '/../config/web-test.php');
|
||||
|
||||
|
@ -6,7 +6,6 @@ defined('YII_ENV') or define('YII_ENV', 'dev');
|
||||
|
||||
require(__DIR__ . '/../vendor/autoload.php');
|
||||
require(__DIR__ . '/../vendor/yiisoft/yii2/yii/Yii.php');
|
||||
Yii::importNamespaces(require(__DIR__ . '/../vendor/composer/autoload_namespaces.php'));
|
||||
|
||||
$config = require(__DIR__ . '/../config/web.php');
|
||||
|
||||
|
1
yii
1
yii
@ -15,7 +15,6 @@ defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));
|
||||
|
||||
require(__DIR__ . '/vendor/autoload.php');
|
||||
require(__DIR__ . '/vendor/yiisoft/yii2/yii/Yii.php');
|
||||
Yii::importNamespaces(require(__DIR__ . '/vendor/composer/autoload_namespaces.php'));
|
||||
|
||||
$config = require(__DIR__ . '/config/console.php');
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user