razor/razor

Razor main module. This module contains some useful helper classes.

dev-master / 1.0.x-dev 2014-03-07 21:48 UTC

This package is not auto-updated.

Last update: 2019-08-09 02:13:28 UTC


README

Build Status Coverage Status Dependency Status Latest Stable Version Total Downloads Latest Unstable Version License

This module contains utilities and helper classes for ZF2.

Install with Composer

{
 "repositories": [
       {
           "type": "vcs",
           "url": "https://github.com/kaiohken1982/RazorMainModule.git"
       }
   ],
   "require": {
       ......,
       "razor/razor": "dev-master",
   }
}

Run unit test

Please note you must be in the module root.

curl -s http://getcomposer.org/installer | php
php composer.phar install
./vendor/bin/phpunit 

If you have xdebug enabled and you want to see code coverage run the command below, it'll create html files in Razor\tests\data\coverage

./vendor/bin/phpunit --coverage-html data/coverage