New Symfony 3 installation: Could not open input file: app/console in composer install

前端 未结 4 963
深忆病人
深忆病人 2020-12-07 00:13

I installed a fresh symfony3-instance via the official symfony-installer (http://symfony.com/download). After doing the first things, I commited the project to Git and clone

相关标签:
4条回答
  • 2020-12-07 00:53

    I have been running into the same problem. The script uses the existance of the var directory to decide whether to use the new directory structure or the old one. If var exists, the new directory structure is used. Otherwise it uses the old structure.

    The default .gitignore file prevents both the var directory and the bin directory from being added to git.

    What I did to solve the problem for me was to edit .gitignore in the project directory so that it looks like this:

    /app/config/parameters.yml
    /bin/*
    /build/
    /composer.phar
    /vendor/
    /web/bundles/
    /var/*
    !var/cache
    /var/cache/*
    !var/cache/.gitkeep
    !var/logs
    /var/logs/*
    !var/logs/.gitkeep
    !var/sessions
    /var/sessions/*
    !var/sessions/.gitkeep
    !bin/console
    !bin/symfony_requirements
    /phpunit.xml
    

    I do not pretend to be an expert on .gitignore, so I'm not sure that is the most elegant way of doing it, but it is what worked for me.

    0 讨论(0)
  • 2020-12-07 01:07

    The ScriptHandler take the dir from the extra config key in the composer.json files names as symfony-bin-dir. So check that the composer contain the correct configuration key, as example:

    composer.json

    ....
    "extra": {
        "symfony-app-dir": "app",
        "symfony-bin-dir": "bin",
        "symfony-var-dir": "var",
        ....
    

    EDIT:

    The problem was related to the cache of composer. It was solved clearing it with the command:

    >php composer.phar clear-cache
    

    Hope this helps.

    0 讨论(0)
  • 2020-12-07 01:07

    I had the same problem:

    [RuntimeException]
    An error occurred when executing the ""cache:clear --no-warmup"" command:
    
    Could not open input file: app/console
    

    My console file is in /bin/ folder too so I had to call this from root of project to clear the cache each time I clone the project from DevOps:

    php bin/console cache:clear
    

    Afterwards I can run composer install and it works fine

    0 讨论(0)
  • 2020-12-07 01:09

    Just create var directory. After that composer install and composer update will work ok.

    Explanation:

    vendor/sensio/distribution-bundle/Composer/ScriptHandler.php:462

    protected static function useNewDirectoryStructure(array $options)
    {
        return isset($options['symfony-var-dir']) && is_dir($options['symfony-var-dir']);
    }
    

    So you need both to have symfony-var-dir in composer.json's extra and have this directory existing.

    0 讨论(0)
提交回复
热议问题