Files
luos/processmaker

15 lines
597 B
Plaintext
Raw Normal View History

2010-12-02 23:34:41 +00:00
#!/usr/bin/env php
<?php
// Because laravel has a __ helper function, it's important we include the class.g file to ensure our __ is used.
require_once __DIR__.'/gulliver/system/class.g.php';
require_once __DIR__.'/bootstrap/autoload.php';
require_once __DIR__.'/bootstrap/app.php'; $scriptDir = dirname(__FILE__).'/';
2010-12-02 23:34:41 +00:00
define("PROCESSMAKER_PATH", $scriptDir);
define("WORKFLOW_PATH", $scriptDir . 'workflow/');
define("WORKFLOW_BIN_PATH", $scriptDir . 'workflow/engine/bin/');
error_reporting(error_reporting() & ~E_DEPRECATED & ~E_STRICT);
include WORKFLOW_BIN_PATH . '/cli.php';
2010-12-02 23:34:41 +00:00