Enforces the use of the shorthand repository URL instead of the full URL.
{
"name": "foo",
"repository": "https://github.com/SamVerschueren/foo",
}
{
"name": "foo",
"repository": "https://github.com/SamVerschueren/foo.git"
}
{
"name": "foo",
"repository": {
"type": "git",
"url": "https://github.com/SamVerschueren/foo.git"
}
}
{
"name": "foo",
"repository": "SamVerschueren/foo",
}
{
"name": "foo",
"repository": {
"type": "git",
"url": "SamVerschueren/foo"
}
}