我正在学习Symfony框架并尝试使用Git部署一个简单的样板应用程序,我将它放在Heroku中。
由于以下致命错误,部署失败:
Uncaught Symfony\Component\Debug\Exception\ClassNotFoundException: Attempted to load class "WebServerBundle" from namespace "Symfony\Bundle\WebServerBundle
Did you forget a "use" statement for another namespace? in /tmp/build_cbeb92af6c9ee04b07e1f85618211649/src/Kernel.php:32
Kernel.php
<?php
namespace App;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
use Symfony\Component\Routing\RouteCollectionBuilder;
class Kernel extends BaseKernel {
use MicroKernelTrait;
const CONFIG_EXTS = '.{php,xml,yaml,yml}';
public function getCacheDir(){
return $this->getProjectDir().'/var/cache/'.$this->environment;
}
public function getLogDir(){
return $this->getProjectDir().'/var/log';
}
public function registerBundles(){
$contents = require $this->getProjectDir().'/config/bundles.php';
foreach ($contents as $class => $envs) {
if (isset($envs['all']) || isset($envs[$this->environment])) {
yield new $class();
}
}
}
protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader){
$container->setParameter('container.autowiring.strict_mode', true);
$container->setParameter('container.dumper.inline_class_loader', true);
$confDir = $this->getProjectDir().'/config';
$loader->load($confDir.'/packages/*'.self::CONFIG_EXTS, 'glob');
if (is_dir($confDir.'/packages/'.$this->environment)) {
$loader->load($confDir.'/packages/'.$this->environment.'/**/*'.self::CONFIG_EXTS, 'glob');
}
$loader->load($confDir.'/services'.self::CONFIG_EXTS, 'glob');
$loader->load($confDir.'/services_'.$this->environment.self::CONFIG_EXTS, 'glob');
}
protected function configureRoutes(RouteCollectionBuilder $routes){
$confDir = $this->getProjectDir().'/config';
if (is_dir($confDir.'/routes/')) {
$routes->import($confDir.'/routes/*'.self::CONFIG_EXTS, '/', 'glob');
}
if (is_dir($confDir.'/routes/'.$this->environment)) {
$routes->import($confDir.'/routes/'.$this->environment.'/**/*'.self::CONFIG_EXTS, '/', 'glob');
}
$routes->import($confDir.'/routes'.self::CONFIG_EXTS, '/', 'glob');
}
}
到目前为止我做了什么:
dotenv
捆绑包(composer require symfony/dotenv
)composer dump-autoload
heroku config:set SYMFONY_ENV=prod
)我学到/注意到的一些事情:
WebServerBundle
的自述文件:WebServerBundle提供了使用PHP运行应用程序的命令 内置Web服务器。它简化了您的本地开发设置,因为您 不必配置适当的Web服务器,如Apache或Nginx来运行您的 应用
..也就是说,WebServerBundle
是一个开发依赖项 - 但它正被包含在生产中。
WebServerBundle
也包含在自动加载下的composer.lock
文件中
"autoload": {
"psr-4": {
"Symfony\\Bundle\\WebServerBundle\\": ""
},
...
},
我的bundles.php
文件包含WebServerBundle
dev
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
];
我有一个.env
文件和一个.env.dist
文件 - 我假设.env.dist
文件用于制作?它们都有相同的内容:
APP_ENV=dev
APP_SECRET=0473d15a4ce2723619d2e8b0405186d3
我是symfony的新手,除了dotenv
包读取.env
文件并设置环境变量之外,我并不真正理解如何实例化生产环境。
对所有这些的任何帮助和明确将不胜感激。
编辑:这是我的composer.json文件
{
"type": "project",
"license": "proprietary",
"require": {
"php": "^7.1.3",
"ext-iconv": "*",
"sensio/framework-extra-bundle": "^5.1",
"symfony/asset": "^4.0",
"symfony/console": "^4.0",
"symfony/dotenv": "^4.0",
"symfony/flex": "^1.0",
"symfony/framework-bundle": "^4.0",
"symfony/lts": "^4@dev",
"symfony/twig-bundle": "^4.0",
"symfony/yaml": "^4.0"
},
"require-dev": {
"symfony/profiler-pack": "^1.0",
"symfony/web-server-bundle": "^4.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-apcu": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"id": "01C1BVQJ19BG3WAS3299PDHH9P",
"allow-contrib": false
}
}
}
答案 0 :(得分:4)
我不确定您使用的命令,(我使用git)
heroku config:设置SYMFONY_ENV = prod
但是如果.env文件有
APP_ENV = dev的
这显然是将环境设置为dev,因此它正在尝试加载不会被推送到服务器的dev依赖项(由您的错误证明)(阅读您提供的文章)。
您需要服务器上的.env
文件APP_ENV=prod
.env用于特定的机器,git会忽略它,而跟踪.env.dist。所以编辑.env.dist
并提交它,然后一旦它在服务器上,只需将其重命名为.env
然后我将在服务器上运行composer install
或composer update
,这将更新依赖关系和清除缓存。然后刷新浏览器。
答案 1 :(得分:0)
答案可能取决于您部署应用程序的方式,我假设您将在部署中仅安装生产依赖项,即您应该使用--no-dev
运行作曲家。这意味着没有任何dev依赖项,很可能包含webserver-bundle,因为在生产中不需要使用像apache或nginx这样的真实web服务器。
原因可能是您的代码需要未安装的dev依赖项,或者您的网络服务器试图在错误的APP_ENV
中运行您的应用。
如果是后者,您应该检查您的网络服务器配置,如果您至少设置了适当的环境变量(APP_ENV
&amp; APP_DEBUG
,可能还有DATABASE_URL
)。在apache中,您必须使用SetEnv APP_ENV prod
,在nginx中使用fastcgi_param APP_ENV prod
。
编辑:我刚刚读到你使用的是composer,因此绝对没有像“入门指南”中提到的那样安装dev依赖项:https://devcenter.heroku.com/articles/php-support#build-behavior
因此,您不能将dev
环境用于Symfony,或者您必须使用composer将dev-dependencies重新安装为常规依赖项(绝对不推荐)。