syncroton icon indicating copy to clipboard operation
syncroton copied to clipboard

The package is not Packagist registered

Open alecpl opened this issue 2 years ago • 2 comments

so it can't be easily installed as described in the Readme file.

alecpl avatar Jan 17 '23 14:01 alecpl

I can confirm. I am trying to install the package using composer require syncroton/syncroton

and I get the following error:

 Could not find a matching version of package syncroton/syncroton. Check the package spelling, your version constraint and that the package is available in a stability which matches your minimum-stability (stable).

adragos avatar Feb 10 '23 11:02 adragos

If anybody struggles, here's a common way to help Composer to retrieve an unregistered repository:

    "require": {
        ...
        "syncroton/syncroton": "1.*"
    },
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/tine20/syncroton.git"
        }
    ],

maximerenou avatar Aug 05 '23 08:08 maximerenou