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
Something has changed between 2.7.2 and 2.7.3
If I run composer init and fill in the bare minimum of the package name, leaving everything else blank I get the following:
composer init
{ "name": "vendor/name", "autoload": { "psr-4": { "Vendor\\Name\\": "src/" } }, "require": {} }
Using composer 2.7.3 and up it tries to create the following (notice the "type": false)
{ "name": "vendor/name", "type": false, "autoload": { "psr-4": { "Vendor\\Name\\": "src/" } }, "require": {} }
Which then fails schema validation.
The text was updated successfully, but these errors were encountered:
137ec17
No branches or pull requests
Something has changed between 2.7.2 and 2.7.3
If I run
composer init
and fill in the bare minimum of the package name, leaving everything else blank I get the following:Using composer 2.7.3 and up it tries to create the following (notice the "type": false)
Which then fails schema validation.
The text was updated successfully, but these errors were encountered: