Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fatal error: Class 'Graze\GuzzleHttp\JsonRpc\Test\FunctionalTestCase' not found #4

Open
sunujacob opened this issue Mar 1, 2018 · 0 comments

Comments

@sunujacob
Copy link

I am trying to use this plugin in my php class on amazon server. I required all files.

function _require_all($dir)
{
    // require all php files
    $scan = glob("$dir/*");
    foreach ($scan as $path) {
        if (preg_match('/\.php$/', $path)) {
            require_once $path;
        } elseif (is_dir($path)) {
            _require_all($path);
        }
    }
}

_require_all("monero/monero-php-master/vendor/");
require_once('monero/monero-php-master/vendor/autoload.php');
require_once('monero/monero-php-master/src/Wallet.php');

I get below error. Please HELP

Fatal error: Class 'Graze\GuzzleHttp\JsonRpc\Test\FunctionalTestCase' not found in /var/www/html/plugins/monero/monero-php-master/vendor/graze/guzzle-jsonrpc/test/functional/BatchFunctionalTest.php on line 17

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant