Results 1 to 6 of 6

Thread: Composer doesn't install anyhting more.

  1. #1
    User
    Join Date
    04-01-10.
    Posts
    289

    Default Composer doesn't install anyhting more.

    Hi everyone,

    I'm on a production website with Contao 3.5.12 and Composer client 0.16.5. Some extensions are still installed since I created the site.

    Today I'd like to install for example dma_elementgenerator. Composer finds the legacy and the new dma versions but but none goes to the end of the installation.When I select one and update packages, here is what I see :
    PHP Code:
    $ /usr/bin/env php -d memory_limit=1G -d max_execution_time=6000 composer.phar update --no-ansi --no-interaction -vv
    Loading composer repositories with package information
    Updating dependencies 
    (including require-dev
    Nothing more. Only the close button.

    I had the same problem to install coinslider. I finally installed it manually after downloading it from the site. But …/contao/install.php didn't work. Updating packages again finished the work. But in packages list, Coinslider is still shown as not installed event if it is working.

    I've updated Composer, cleared the cache but nothing. What can I do please ?
    Thanks.

  2. #2
    User Spooky's Avatar
    Join Date
    01-03-13.
    Posts
    339

    Default

    What is your minimum-stability setting? Set it to "stable".

  3. #3
    User
    Join Date
    04-01-10.
    Posts
    289

    Default

    Thanks. I changed it from 'dev' to 'stable' but it don't change anything. I could install dma_eg by downloading it from the github and transferring by ftp in system/modules/ (and contao/install.php) so it works. But it's not visible in Package management.

  4. #4
    User Spooky's Avatar
    Join Date
    01-03-13.
    Posts
    339

    Default

    Update your composer.phar to 1.4.1 and post your complete composer.json

  5. #5
    User
    Join Date
    04-01-10.
    Posts
    289

    Default

    Updated to 1.4.1. And here is my composer.json

    PHP Code:
    {
        
    "name""local/website",
        
    "description""A local website project",
        
    "type""project",
        
    "license""proprietary",
        
    "require": {
            
    "bugbuster/tivoka"">=1.0.2.0,<1.1-dev",
            
    "codefog/contao-cookiebar"">=1.1.0.0,<1.2-dev",
            
    "contao-community-alliance/composer-client""~0.12",
            
    "contao-community-alliance/dc-general"">=2.0.0.0-beta38,<2.1-dev@beta",
            
    "contao-legacy/be_piwikcharts"">=1.5.0.9011,<1.6-dev",
            
    "contao-legacy/flexslider"">=1.4.3.9004,<1.5-dev",
            
    "fritzmg/contao-sharebuttons"">=1.1.9.0,<1.2-dev",
            
    "menatwork/synccto"">=3.0.5.0,<3.1-dev",
            
    "menatwork/wf_extendedbreadcrumb"">=2.1.2.0,<2.2-dev",
            
    "metamodels/attribute_select""dev-hotfix-2.0.0-alpha11 as 2.0.0",
            
    "metamodels/bundle_all"">=2.0.0.0,<2.1-dev"
        
    },
        
    "prefer-stable"true,
        
    "minimum-stability""stable",
        
    "config": {
            
    "preferred-install""auto",
            
    "cache-dir""cache",
            
    "component-dir""../assets/components"
        
    },
        
    "repositories": [
            {
                
    "type""artifact",
                
    "url""packages"
            
    },
            {
                
    "type""composer",
                
    "url""https://legacy-packages-via.contao-community-alliance.org/"
            
    }
        ],
        
    "extra": {
            
    "contao": {
                
    "migrated""done"
            
    }
        }


  6. #6
    User Spooky's Avatar
    Join Date
    01-03-13.
    Posts
    339

    Default

    The update might just take very long. Sometimes the auto-updated terminal window does not update anymore. Simply wait for 5 or 10 minutes then open the package manager again.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •