Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 908 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 908 Bytes

berlindb-zlb

An experimental utility library for BerlinDB and WordPress.

Installation

Install via Composer.

Since Zlb is not currently hosted on a Composer package repository, the GitHub repository should be manually added to your project's package.json as such:

"repositories": [
  {
    "type": "vcs",
    "url": "https://github.com/bosconian-dynamics/berlindb-zlb"
  }
]

After the GitHub repository has been added, Zlb can be required as a dependency, following the conventions described in the Composer documentation for Loading a package from a VCS repository.

For example, to require HEAD from the command line:

composer require bosconian-dynamics/berlindb-zlb@dev-main

or manually in package.json:

"require": {
  "bosconian-dynamics/berlindb-zlb": "dev-main"
}