I want to install neitanod/forceutf8
via composer and I get error:
Could not find package require at any version for your minimum-stability (dev). Check the package spelling or your minimum-stability.
That's the second time it does that - previously with html2text
.
How to fix it?
Edit: My composer.json:
{
"name": "vendor_name/package_name",
"description": "description_text",
"minimum-stability": "dev",
"license": "proprietary",
"authors": [
{
"name": "author's name",
"email": "email@example.com"
}
],
"require": {
...
}
}
composer require neitanod/forceutf8
works for me. What's the content of yourcomposer.json
? Try removing "minimum-stability: dev", if this line is in it. – Tomas VotrubaC:\wamp\bin\php\php5.5.12\php.exe C:\strony\www\system_api\composer.phar require neitanod/forceutf8:v1.4 require -n --no-progress [InvalidArgumentException] Could not find package require at any version for your minimum-stability (stable). Check the package spelling or your minimum-stability
– piernikcomposer.phar require neitanod/forceutf8
only. You duplicaterequire
keyword. – Tomas Votrubarequire -n --no-progress
all went ok - thank You – piernik