Add a new check for the mbstring dependency. Closes #20

This commit is contained in:
Craig Davis
2014-03-24 08:02:05 -05:00
parent 886fc223dd
commit 7103ee343e
2 changed files with 16 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ $app->add('Resume', __DIR__ . '/src');
$console = new Resume\Cli\Resume();
// If we're running from phar, we get these values from the stub
if (!defined("IN_PHAR")) {
if (!defined('IN_PHAR')) {
$project = json_decode(file_get_contents(__DIR__ . '/composer.json'));
}