duanjieyi6582 2016-09-19 06:22
浏览 79
已采纳

Symfony 3.1.4 clearCache脚本需要generator-bundle dev包

On a new project generated with the "symfony new" command, when running composer install with the --no-dev parameter, I'm getting the following error:

remote: > symfony-scripts: Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache
remote:
remote: Fatal error: Class 'Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle' not found in D:\home\site\wwwroot\app\AppKernel.php on line 25
remote: .....
remote: Script Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache handling the symfony-scripts event terminated with an exception
remote:
remote:                                                                                                             
remote:   [RuntimeException]                                                                                        
remote:   An error occurred when executing the ""cache:clear --no-warmup"" command:                                 
remote:   Fatal error: Class 'Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle' not found in D:\home\site\wwwroot\app\AppKernel.php on line 25
remote:   .                                                                                                         
remote:                                                                                                             
remote:
remote: An error has occurred during web site deployment.
remote: Exception trace:
remote: Composer install failed
remote:  () at D:\home\site\wwwroot\vendor\sensio\distribution-bundle\Composer\ScriptHandler.php:307
remote:  Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::executeCommand() at D:\home\site\wwwroot\vendor\sensio\distribution-bundle\Composer\ScriptHandler.php:138
remote:  Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache() at phar://D:/home/site/wwwroot/composer.phar/src/Composer/EventDispatcher/EventDispatcher.php:255
remote:  Composer\EventDispatcher\EventDispatcher->executeEventPhpScript() at phar://D:/home/site/wwwroot/composer.phar/src/Composer/EventDispatcher/EventDispatcher.php:209
remote:  Composer\EventDispatcher\EventDispatcher->doDispatch() at phar://D:/home/site/wwwroot/composer.phar/src/Composer/EventDispatcher/EventDispatcher.php:80
remote:  Composer\EventDispatcher\EventDispatcher->dispatch() at phar://D:/home/site/wwwroot/composer.phar/src/Composer/EventDispatcher/EventDispatcher.php:193
remote:  Composer\EventDispatcher\EventDispatcher->doDispatch() at phar://D:/home/site/wwwroot/composer.phar/src/Composer/EventDispatcher/EventDispatcher.php:95
remote:  Composer\EventDispatcher\EventDispatcher->dispatchScript() at phar://D:/home/site/wwwroot/composer.phar/src/Composer/Installer.php:297
remote:  Composer\Installer->run() at phar://D:/home/site/wwwroot/composer.phar/src/Composer/Command/InstallCommand.php:135
remote:  Composer\Command\InstallCommand->execute() at phar://D:/home/site/wwwroot/composer.phar/vendor/symfony/console/Command/Command.php:259
remote:  Symfony\Component\Console\Command\Command->run() at phar://D:/home/site/wwwroot/composer.phar/vendor/symfony/console/Application.php:847
remote:  Symfony\Component\Console\Application->doRunCommand() at phar://D:/home/site/wwwroot/composer.phar/vendor/symfony/console/Application.php:192
remote:  Symfony\Component\Console\Application->doRun() at phar://D:/home/site/wwwroot/composer.phar/src/Composer/Console/Application.php:231
remote:  Composer\Console\Application->doRun() at phar://D:/home/site/wwwroot/composer.phar/vendor/symfony/console/Application.php:123
remote:  Symfony\Component\Console\Application->run() at phar://D:/home/site/wwwroot/composer.phar/src/Composer/Console/Application.php:104
remote:  Composer\Console\Application->run() at phar://D:/home/site/wwwroot/composer.phar/bin/composer:43
remote:  require() at D:\home\site\wwwroot\composer.phar:24

It seems that the clearCache post-install-cmd is requiring the sensio/generator-bundle package. However, it is listed in the require-dev section in the default composer.json I have copied below.

{
    "name": "benjat/hellosf",
    "license": "proprietary",
    "type": "project",
    "autoload": {
        "psr-4": {
            "": "src/"
        },
        "classmap": [
            "app/AppKernel.php",
            "app/AppCache.php"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/"
        }
    },
    "require": {
        "php": ">=5.5.9",
        "symfony/symfony": "3.1.*",
        "doctrine/orm": "^2.5",
        "doctrine/doctrine-bundle": "^1.6",
        "doctrine/doctrine-cache-bundle": "^1.2",
        "symfony/swiftmailer-bundle": "^2.3",
        "symfony/monolog-bundle": "^2.8",
        "symfony/polyfill-apcu": "^1.0",
        "sensio/distribution-bundle": "^5.0",
        "sensio/framework-extra-bundle": "^3.0.2",
        "incenteev/composer-parameter-handler": "^2.0"
    },
    "require-dev": {
        "sensio/generator-bundle": "^3.0",
        "symfony/phpunit-bridge": "^3.0"
    },
    "scripts": {
        "symfony-scripts": [
            "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
        ],
        "post-install-cmd": [
            "@symfony-scripts"
        ],
        "post-update-cmd": [
            "@symfony-scripts"
        ]
    },
    "extra": {
        "symfony-app-dir": "app",
        "symfony-bin-dir": "bin",
        "symfony-var-dir": "var",
        "symfony-web-dir": "web",
        "symfony-tests-dir": "tests",
        "symfony-assets-install": "relative",
        "incenteev-parameters": {
            "file": "app/config/parameters.yml"
        }
    }
}

I haven't updated the installer generated code yet, and my AppKernel registerBundles method contains the following:

public function registerBundles()
{
    $bundles = [
        new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
        new Symfony\Bundle\SecurityBundle\SecurityBundle(),
        new Symfony\Bundle\TwigBundle\TwigBundle(),
        new Symfony\Bundle\MonologBundle\MonologBundle(),
        new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
        new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
        new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
        new AppBundle\AppBundle(),
    ];

    if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
        $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
        $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
        $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
        $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
    }

    return $bundles;
}

Is that a bug in the clearCache script? in the default composer.json file? In the default registerBundles method? In my expectation?

  • 写回答

1条回答 默认 最新

  • duanjizi9443 2016-09-19 07:20
    关注

    Problem is that you are trying to composer install with no-dev parameter while not exporting symfony env to prod. See docs: http://symfony.com/doc/current/deployment.html#c-install-update-your-vendors

    If you get a "class not found" error during this step, you may need to run export SYMFONY_ENV=prod before running this command so that the post-install-cmd scripts run in the prod environment.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题