LaravelPackages.net
Acme Inc.
Toggle sidebar
yoozi/golem

PHP development toolkit for Yoozi RD team.

8
8
1.1.0
About yoozi/golem

yoozi/golem is a Laravel package for php development toolkit for yoozi rd team.. It currently has 8 GitHub stars and 8 downloads on Packagist (latest version 1.1.0). Install it with composer require yoozi/golem. Discover more Laravel packages by yoozi or browse all Laravel packages to compare alternatives.

Last updated

Project Golem

Build Status Latest Stable Version Code Coverage Latest Unstable Version License

What is Project Golem?

Project Golem is a PHP development toolkit crafted by R&D team from Yoozi Inc. It consists of a growing collection of loosely coupled high-level PHP libraries, most of which are derived from our own products to solve real world problems.

  • Miner: Miner is a PHP library that extracting metadata and interesting text content (like author, summary, and etc.) from HTML pages. It acts like a simplified HTML metadata parser in Apache Tika.
  • Email: Simple toolkits to help processing email related tasks, such as a Email Address Parser and etc.
  • Notification: A simple library to wrap common notification transports, such as email, socket.io and etc.

Golem can be installed as a whole package via Composer. However, to keep dependency and installation footprint as low as possible, each library within Golem can also be installed as a standalone package.

System Requirements

  • PHP >= 5.3.0
  • You will need Composer installed to load the dependencies of Golem libraries.
  • Some libraries may require extra server components and/or extensions installed.

Installation

The best and easy way to install the Golem package is via Composer.

  1. Open your composer.json and add the following to the require array:

    "yoozi/golem": "1.0.*"
    
  2. Run Composer to install or update the new package dependencies.

    php composer install
    

    or

    php composer update
    

Versioning

For transparency and insight into our release cycle, releases will be numbered with the follow format:

<major>.<minor>.<patch>

And constructed with the following guidelines:

  • Breaking backwards compatibility bumps the major
  • New additions without breaking backwards compatibility bumps the minor
  • Bug fixes and misc changes bump the patch

For more information on semantic versioning, please visit http://semver.org/.

Testing

To run the tests you first need to install PHPUnit.

$ phpunit

Changelog

See changelogs here.

Authors

See authors and contributors here.

License

Copyright 2014 Yoozi, Inc.

Licensed under the MIT License.

Comments