我一直试图找到如何在Symfony 2中重命名app文件夹,但我找不到任何东西。我认为这是可行的,但我不知道如何做到这一点。
有人能帮助我吗?
答案 0 :(得分:3)
查看composer.json
文件。具体做法是:
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
将symfony-app-dir
更改为您想要的值。您还必须将路径更改为incenteev-parameters.file
以及可能明确定位app
目录的任何其他路径。
然后......您需要相应地更改web/app.php
和web/app_dev.php
文件中的某些路径。例如:
<?php
use Symfony\Component\ClassLoader\ApcClassLoader;
use Symfony\Component\HttpFoundation\Request;
$loader = require_once __DIR__.'/../apps/bootstrap.php.cache';
// Enable APC for autoloading to improve performance.
// You should change the ApcClassLoader first argument to a unique prefix
// in order to prevent cache key conflicts with other applications
// also using APC.
/*
$apcLoader = new ApcClassLoader(sha1(__FILE__), $loader);
$loader->unregister();
$apcLoader->register(true);
*/
require_once __DIR__.'/../apps/AppKernel.php';
//require_once __DIR__.'/../apps/AppCache.php';
$kernel = new AppKernel('prod', false);
$kernel->loadClassCache();
//$kernel = new AppCache($kernel);
// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter
//Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
$loader
和require_once
路径必须更改。我假设缓存清除,也可能需要更新编写器。
它应该工作正常。文档讨论了overriding the default file structure,但没有提及app
目录。但是,我在这里做了一个快速测试,它似乎在这里工作正常。 YMMV!
希望这会有所帮助:)