-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.php
27 lines (21 loc) · 921 Bytes
/
init.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
<?php
/*
* This file is part of Cheddar.
*
* (c) 2021 BACKBONE, s.r.o.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require(dirname(__FILE__) . '/lib/Exceptions/CheddarException.php');
require(dirname(__FILE__) . '/lib/Exceptions/ApiException.php');
require(dirname(__FILE__) . '/lib/Exceptions/AuthenticationException.php');
require(dirname(__FILE__) . '/lib/Exceptions/MessageIntegrityException.php');
require(dirname(__FILE__) . '/lib/Transport/Curl.php');
require(dirname(__FILE__) . '/lib/Currencies.php');
require(dirname(__FILE__) . '/lib/PaymentStatuses.php');
require(dirname(__FILE__) . '/lib/Api.php');
require(dirname(__FILE__) . '/lib/Data/Payment.php');
require(dirname(__FILE__) . '/lib/Api/Message.php');
require(dirname(__FILE__) . '/lib/Api/Payment.php');
require(dirname(__FILE__) . '/lib/Cheddar.php');