force language = english
[GitHub/Stricted/speedport-hybrid-php-api.git] / CryptLib / bootstrap.php
CommitLineData
14d4f286
S
1<?php
2/**
3 * Bootstrap the library. This registers a simple autoloader for autoloading
4 * classes
5 *
6 * If you are using this library inside of another that uses a similar
7 * autoloading system, you can use that autoloader instead of this file.
8 *
9 * PHP version 5.3
10 *
11 * @category PHPCryptLib
12 * @package Core
13 * @author Anthony Ferrara <ircmaxell@ircmaxell.com>
14 * @copyright 2011 The Authors
15 * @license http://www.opensource.org/licenses/mit-license.html MIT License
16 * @version Build @@version@@
17 */
18
19namespace CryptLib;
20
21require_once __DIR__ . '/Core/AutoLoader.php';
22
23$autoloader = new Core\AutoLoader(__NAMESPACE__, dirname(__DIR__));
24
25$autoloader->register();