Timo
Timo

Reputation: 1

Failed to download namelesscoder/fluid from dist

I've tried to install this package: https://github.com/TYPO3/Fluid.Lint

as a dev requirement via: ddev composer require typo3fluid/fluid-lint --dev

I am getting this error:

./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev)
Package operations: 1 install, 0 updates, 0 removals

Installation failed, reverting ./composer.json to its original content.

[RuntimeException]
Failed to execute git clone --no-checkout 'https://:@github.com/NamelessCoder/TYPO3.Fluid.git.git' '/var/www/html/vendor/namelesscoder/fluid' && cd '/var/www/html/vendor/namelesscoder/fluid' && git remote add composer 'https://:@github.com/NamelessCoder/TYPO3.Fluid.git.git' && git fetch compose
r && git remote set-url origin 'https://github.com/NamelessCoder/TYPO3.Fluid.git.git' && git remote set-url composer 'https://github.com/NamelessCoder/TYPO3.Fluid.git.git'

Cloning into '/var/www/html/vendor/namelesscoder/fluid'...
remote: Repository not found.
fatal:***@github.com/NamelessCoder/TYPO3.Fluid.git.git/' not found

How can I fix this????????

Upvotes: 0

Views: 758

Answers (2)

Simon Gilli
Simon Gilli

Reputation: 459

There was never a new version released which uses the new package (see https://github.com/TYPO3/Fluid.Lint/commit/3c6e8fcefad1648c5c31dfdeebada99c03c7a0d7) so you have to require the dev-master instead:

ddev composer require typo3fluid/fluid-lint:dev-master --dev

Upvotes: 0

Thomas Löffler
Thomas Löffler

Reputation: 6144

this is not an issue on your side. The repository link seems to have an incorrect second .git appended: https://:@github.com/NamelessCoder/TYPO3.Fluid.git.git.

Though this repository is not maintained since 5 years, this is possibly not up-to-date and working for current TYPO3 versions.

More see here: https://github.com/TYPO3/Fluid.Lint/issues/8

Upvotes: 0

Related Questions