fatzebra/PHP-Library

Composer Version out of date

blairwigleyactu opened this issue · 1 comments

Looks like the version of this library on composer is out of date (version 1.1.5), can someone update it please: https://packagist.org/packages/fatzebra/fatzebra

That's not pointing to this repository, someone else took the namespace and pointed it to his fork:
https://github.com/Moult/PHP-Library

For anyone else looking to use this library, you may need to just add this (or a variation of this) to your composer.json file:

"repositories": {
    "fatzebra-php": {
      "type": "vcs",
      "url": "https://github.com/fatzebra/PHP-Library.git",
      "no-api": true
    }
},

And then bring in whichever version you need:

"require": {
    "fatzebra/fatzebra-php": "1.2.3"
},