-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathstart.php
41 lines (34 loc) · 1.1 KB
/
start.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
* --------------------------------------------------------------------------
* Lara Cart
* --------------------------------------------------------------------------
*
* A Shopping Cart based on the Cart library from CodeIgniter for use with
* the Laravel Framework.
*
* @package lara-cart
* @version 1.0
* @author Bruno Gaspar <[email protected]>
* @link https://github.com/bruno-g/lara-cart
*/
/*
* --------------------------------------------------------------------------
* Register the class.
* --------------------------------------------------------------------------
*/
Autoloader::namespaces(array(
'LaraCart' => __DIR__ . DS
));
/*
* --------------------------------------------------------------------------
* Set the global alias.
* --------------------------------------------------------------------------
*/
Autoloader::alias('LaraCart\\Cart', 'Cart');
/*
* --------------------------------------------------------------------------
* Initialize the Cart.
* --------------------------------------------------------------------------
*/
Cart::init();