Changes
Title
unchanged
Move sources to src
Category
unchanged
How-tos
Yii version
unchanged
2.0
Tags
changed
structure,application structure
Content
changed
[...]
```php
$config = [
// ...
'basePath' => dirname(__DIR__) . '/src',
// ...
'aliases' => [
'@vendor'runtimePath' => dirname(__DIR__) . '/
vendorruntime',
'@runtime'vendorPath' => dirname(__DIR__) . '/
runtime',
// ...
],vendor',
// ...
];[...]
// ...
'basePath' => dirname(__DIR__) . '/src',
// ...
'aliases' => [
'@vendor' => dirname(__DIR__) . '/vendor',
'@runtime' => dirname(__DIR__) . '/runtime',
// ...
]'runtimePath' => dirname(__DIR__) . '/runtime',
'vendorPath' => dirname(__DIR__) . '/vendor',
// ...
];
```
That's it now you have both console and web application source code in `src`.