There was an error while loading. Please reload this page.
1 parent cba4c28 commit 5d6f821Copy full SHA for 5d6f821
2 files changed
bin/zs-client.php
@@ -16,15 +16,15 @@
16
ini_set('date.timezone', 'UTC');
17
}
18
19
-set_include_path(get_include_path(). PATH_SEPARATOR . getcwd());
+set_include_path(getcwd() . PATH_SEPARATOR . get_include_path());
20
21
$basePath = dirname(__DIR__);
22
if (!defined('PHAR')) {
23
define('CWD', getcwd());
24
chdir($basePath);
25
26
27
-require_once "vendor/autoload.php";
+require_once __DIR__ . '/vendor/autoload.php';
28
29
if (file_exists("config/application.config.php")) {
30
$appConfig = require "config/application.config.php";
composer.json
@@ -1,6 +1,6 @@
1
{
2
"name" : "zenddevops/client",
3
- "version" : "1.2.4",
+ "version" : "1.2.5",
4
"description" : "ZF2 CLI tool to access Zend Server Web API",
5
"type" : "project",
6
"authors" : [{
0 commit comments