You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting this error when running composer install with a clone of this repo:
[Composer\Json\JsonValidationException] ./composer.json does not match the expected JSON schema: - name : Does not match the regex pattern ^[a-z0-9]([_.-]?[a-z0-9]+)*/[a-z0-9](([_.]?|-{0,2})[a-z0-9]+)*$
It seems composer needs a '/' in the name field. I tried replacing the '-' with a '/', as below and it seems to get past this issue:
{ "name": "intuit/demos-webhooks" ....
but I don't know if that is the correct fix or not...just a test and it seemed to work.
The text was updated successfully, but these errors were encountered:
I am getting this error when running
composer install
with a clone of this repo:[Composer\Json\JsonValidationException]
./composer.json does not match the expected JSON schema:
- name : Does not match the regex pattern ^[a-z0-9]([_.-]?[a-z0-9]+)*/[a-z0-9](([_.]?|-{0,2})[a-z0-9]+)*$
It seems composer needs a '/' in the name field. I tried replacing the '-' with a '/', as below and it seems to get past this issue:
{
"name": "intuit/demos-webhooks"
....
but I don't know if that is the correct fix or not...just a test and it seemed to work.
The text was updated successfully, but these errors were encountered: