<?php 
 
/** 
 * This file is part of the Apk Parser package. 
 * 
 * (c) Tufan Baris Yildirim <[email protected]> 
 * 
 * For the full copyright and license information, please view the LICENSE 
 * file that was distributed with this source code. 
 */ 
 
spl_autoload_register(function ($className) { 
    // Fix for OSX and *nix 
    $className = str_replace('\\', DIRECTORY_SEPARATOR, $className); 
    include(dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . $className . ".php"); 
}); 
 
 |