hautelook/AliceBundle is gone - what's going on & what now? [closed] hautelook/AliceBundle is gone - what's going on & what now? [closed] symfony symfony

hautelook/AliceBundle is gone - what's going on & what now? [closed]


As Théo Fidry, the maintainer of that package, recommends: his Github account holds an up-to-date fork which can be used by adding the following settings to composer.json:

    "repositories": [        {            "type": "vcs",            "url": "https://github.com/theofidry/AliceBundle"        }    ],


This might not be a direct answer to your question but I hope it might help people having huge troubles in their CI pipeline as I had. What I did to solve the issue because the version uploaded by theofidry required PHP 7.3 at least (and my old app does not meet this requirement) was:

  1. Go to your project folder in your local development
  2. Copy the folder vendor/hautelook/alice-bundle somewhere
  3. Run git init inside the copied folder
  4. Create a git repository (e.g on github) and push the content
  5. Back in your project, update your composer.json, change the version used for hautelook/alice-bundle to "dev-master" and add a vcs repository as specified below
  6. Run composer update and you should be fine

Adapt url accordingly:

"repositories": [    {        "type": "vcs",        "url": "git@github.com:YourRepository/AliceBundle"    }]

That solution would work only if you had already a version of AliceBundle somewhere