Skip to content

Instantly share code, notes, and snippets.

@zeroc0d3
Created October 20, 2016 16:17
Show Gist options
  • Save zeroc0d3/f647c928f8426b5d5cd23d8a447324f7 to your computer and use it in GitHub Desktop.
Save zeroc0d3/f647c928f8426b5d5cd23d8a447324f7 to your computer and use it in GitHub Desktop.
Load Guzzle library in CodeIgniter
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Guzzle
{
public function __construct()
{
require_once APPPATH . 'third_party/guzzle/autoloader.php';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment