fxpio / composer-asset-plugin

NPM/Bower Dependency Manager for Composer
MIT License
893 stars 156 forks source link

Getting Specific Alpha release #306

Closed LeftPinkie closed 6 years ago

LeftPinkie commented 6 years ago

I am trying to get Bootstrap 4.0.0 alpha 5 via bower but cannot figure what version number to use. I have tried:

"bower-asset/bootstrap-4.0.0.alpha-5": "4.0.0.alpha-5@alpha"
"bower-asset/bootstrap-4.0.0.alpha.5": "4.0.0.alpha.5@alpha"
"bower-asset/bootstrap-4.0.0.alpha5": "4.0.0.alpha5@alpha"
francoispluchino commented 6 years ago

Use:

{
  "require": {
    "bower-asset/bootstrap": "4.0.0-alpha.6"
  }
}
LeftPinkie commented 6 years ago

I was trying to install version 4 alpha 5 as another version. I was able to get it to work by using:

{
    "require": {
        "fxp/composer-asset-plugin": "^1.3",
        "bower-asset/bootstrap": "^3.3",
        "bower-asset/bootstrap-4.0.0": "4.0.0-alpha.5"
    }
}