Skip to content

Commit

Permalink
Update testcase to reflect current behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
fredden authored and localheinz committed May 2, 2023
1 parent 7a66e58 commit 00976bb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
"repositories": [
{
"type": "composer",
"url": "http://packages.example.com"
"url": "http://packages.example.com",
"only": [
"example/*"
]
},
{
"type": "composer",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
"homepage": "https://getcomposer.org/doc/04-schema.md#repositories",
"repositories": [
{
"type": "composer",
"url": "http://packages.example.com"
"url": "http://packages.example.com",
"only": [ "example/*" ],
"type": "composer"
},
{
"type": "composer",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
"homepage": "https://getcomposer.org/doc/04-schema.md#repositories",
"repositories": {
"foo": {
"only": [
"foo/*"
],
"type": "composer",
"url": "http://packages.foo.com"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
"homepage": "https://getcomposer.org/doc/04-schema.md#repositories",
"repositories": {
"foo": {
"type": "composer",
"url": "http://packages.foo.com"
"url": "http://packages.foo.com",
"only": [ "foo/*" ],
"type": "composer"
},
"bar": {
"type": "composer",
Expand Down

0 comments on commit 00976bb

Please sign in to comment.