18 lines
385 B
PHP
18 lines
385 B
PHP
<?php
|
|
/**
|
|
* main.php
|
|
* @author Roman Revin http://phptime.ru
|
|
*/
|
|
|
|
$baseDir = realpath(__DIR__ . '/..');
|
|
|
|
return [
|
|
'id' => 'testapp',
|
|
'basePath' => $baseDir,
|
|
'aliases' => [
|
|
'@web' => '/',
|
|
'@webroot' => $baseDir . '/runtime',
|
|
'@vendor' => realpath($baseDir . '/../../vendor'),
|
|
'@bower' => realpath($baseDir . '/../../vendor/bower'),
|
|
]
|
|
]; |