We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When adding Browser as a dependency in Composer, I get the following error:
[RuntimeException] Failed to clone https://github.com/cbschuld/browser.php.git via git, https protocols, aborting. git://github.com/cbschuld/browser.php.git fatal: remote error: Repository not found. https://github.com/cbschuld/browser.php.git fatal: https://github.com/cbschuld/browser.php.git/info/refs?service=git-upload-pack > not found: did you run git update-server-info on the server?
[RuntimeException] Failed to clone https://github.com/cbschuld/browser.php.git via git, https protocols, aborting.
It appears that on packagist (https://packagist.org/packages/cbschuld/browser.php) the canonical url https://github.com/cbschuld/browser.php however it is actually https://github.com/cbschuld/Browser.php (Not the capital B in Browser.php)
Although viewing either via a web browser doesn't seem to matter, it looks like Composer/Git does.
Is this an issue with Browser or is it a Composer or git issue?
My composer.json has "require": { "cbschuld/browser.php": "dev-master" }
Cheers
The text was updated successfully, but these errors were encountered:
this is a case problem. the correct url is: git://github.com/cbschuld/Browser.php.git
workaround:
{ "repositories": [ { "type" : "vcs", "url" : "git@github.com:cbschuld/Browser.php.git" } ], "require": { "cbschuld/browser.php": "dev-master" } }
Sorry, something went wrong.
Excellent, thanks for the workaround.
No branches or pull requests
When adding Browser as a dependency in Composer, I get the following error:
It appears that on packagist (https://packagist.org/packages/cbschuld/browser.php) the canonical url https://github.com/cbschuld/browser.php however it is actually https://github.com/cbschuld/Browser.php
(Not the capital B in Browser.php)
Although viewing either via a web browser doesn't seem to matter, it looks like Composer/Git does.
Is this an issue with Browser or is it a Composer or git issue?
My composer.json has
"require": {
"cbschuld/browser.php": "dev-master"
}
Cheers
The text was updated successfully, but these errors were encountered: