skyzyx/shared-utilities

This package is abandoned and no longer maintained. No replacement package was suggested.

Shared, re-usable classes that can be pulled into other sub-projects.

1.0.4 2015-02-12 07:54 UTC

This package is not auto-updated.

Last update: 2018-05-08 20:33:34 UTC


README

Source Latest Stable Version Total Downloads Open Issues Build Status Coverage Status Code Climate Code Quality Dependency Status SensioLabsInsight HHVM Support Documentation Status MIT License Author

This is a package of shared utilities for PHP-based websites and CLI applications. Logging, a dependency injection container, an event dispatcher, and a number of helpful utilities are all included.

Installation

Using Composer:

composer require skyzyx/shared-utilities=~1.0

Testing

Firstly, run composer install -o to download and install the dependencies.

You can run the tests as follows:

./vendor/bin/phpunit

API Reference

The API Reference is generated by a tool called phpDocumentor 2.x. You should install it locally on your system with:

cd /usr/local/bin &&
wget http://phpdoc.org/phpDocumentor.phar &&
chmod +x phpDocumentor.phar &&
mv phpDocumentor.phar phpdoc

Once it's installed, you can generate updated documentation by running the following command in the root of the repository.

phpdoc

Coding Standards