comperio/domain-specific-query

This package is abandoned and no longer maintained. The author suggests using the https://github.com/nicmart/DomainSpecificQuery package instead.

Build and define queries specific to the application domain and compile them into other formats

v0.1.3 2013-11-05 09:30 UTC

This package is auto-updated.

Last update: 2020-06-23 07:41:47 UTC


README

Build and define queries specific to the application domain and compile them into other formats.

Warning!

The library is not completed yet and it is in early development stage

Build Status Coverage Status Scrutinizer Quality Score

Install

The best way to install DomainSpecificQuery is through composer.

Just create a composer.json file for your project:

{
    "require": {
        "comperio/domain-specific-query": "dev-master"
    }
}

Then you can run these two commands to install it:

$ curl -s http://getcomposer.org/installer | php
$ php composer.phar install

or simply run composer install if you have have already installed the composer globally.

Then you can include the autoloader, and you will have access to the library classes:

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