Skip to content

Commit

Permalink
Attempt to fix the composer install (#124)
Browse files Browse the repository at this point in the history
* Attempt to fix the composer install

Composer isn't happy with installing HackTest, since that requires the HSL, which requires HackTest.
There must be some way of aliasing this that Fred referred to, but it appears it was already doing that.
Maybe we weren't specific enough?

#121 (comment)

> Still failing; I think this is the compsoer.json branch configuration - for example, we have this in master:
> 
> ```
> 	  "extra": {
>     "branch-alias": {
>       "dev-master": "4.x-dev"
>     }
>   },
> ```

* Add more guidance for composer

It needs to understand that this is the HSL HackTest is looking for.
  • Loading branch information
lexidor authored Feb 10, 2020
1 parent 10ece75 commit 2a52af7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"description": "The Hack Standard Library",
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
"dev-master": "3.30.x-dev",
"dev-v3.30.x": "3.30.x-dev"
}
},
"license": "MIT",
Expand Down

0 comments on commit 2a52af7

Please sign in to comment.