nicmart / dsq-expression
Basic expression classes used by DSQ components
v0.1.0
2014-02-06 10:58 UTC
Requires
- php: >=5.4
- nicmart/building: ~0.1
Requires (Dev)
- satooshi/php-coveralls: dev-master
This package is auto-updated.
Last update: 2024-10-23 16:50:03 UTC
README
Base Expression classes for DomainSpecificQuery libraries.
Warning!
The library is not completed yet and it is in early development stage
Install
The best way to install DSQExpression is through composer.
Just create a composer.json file for your project:
{ "require": { "nicmart/dsq-expression": "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';