nicmart / domain-specific-query
Build and define queries specific to the application domain and compile them into other formats
v0.1.3
2013-11-05 09:30 UTC
Requires
- php: >=5.3.3
- jakubledl/dissect: ~1
- nicmart/building: ~0.1
- nicmart/string-template: ~0.1
- nicmart/universal-matcher: ~0.1
Requires (Dev)
- satooshi/php-coveralls: dev-master
This package is auto-updated.
Last update: 2024-10-23 16:48:38 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
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';