larium/specification

An implementation of Specification pattern

0.0.1 2018-11-11 13:42 UTC

This package is auto-updated.

Last update: 2024-04-17 00:18:08 UTC


README

Scrutinizer Code Quality Code Coverage Build Status

An implementation of Specification pattern.

Installation

You can install this library using Composer

Information about how to install composer you can find in official website.

Command line

In root directory of your project run through a console:

$ composer require "larium/specification":"@stable"

Composer.json

Include require line in your composer.json file

{
    "require": {
        "larium/specification": "@stable"
    }
}

and run from console in the root directory of your project:

$ composer update

After this you must require autoload file from composer.

<?php
require_once 'vendor/autoload.php';

See full documentation at https://specification.larium.net