first commit

This commit is contained in:
2024-12-17 13:43:22 +01:00
commit 8e6cd8b410
21292 changed files with 3514826 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<?php
/**
* OpenPayU Standard Library
* ver. 2.1.3
*
* @copyright Copyright (c) 2011-2016 PayU
* @license http://opensource.org/licenses/LGPL-3.0 Open Software License (LGPL 3.0)
* http://www.payu.com
* http://developers.payu.com
*/
include_once('OpenPayU/Configuration.php');
include_once('OpenPayU/OpenPayUException.php');
include_once('OpenPayU/Util.php');
include_once('OpenPayU/OpenPayU.php');
include_once('OpenPayU/OpenPayuOrderStatus.php');
include_once('OpenPayU/Result.php');
require_once('OpenPayU/Http.php');
require_once('OpenPayU/HttpCurl.php');
require_once('OpenPayU/Oauth/Oauth.php');
require_once('OpenPayU/Oauth/OauthGrantType.php');
require_once('OpenPayU/Oauth/OauthResultClientCredentials.php');
require_once('OpenPayU/Oauth/Cache/OauthCacheInterface.php');
require_once('OpenPayU/Oauth/Cache/OauthCacheFile.php');
require_once('OpenPayU/Oauth/Cache/OauthCacheMemcached.php');
require_once('OpenPayU/ResultError.php');
require_once('OpenPayU/AuthType/AuthType.php');
require_once('OpenPayU/AuthType/Basic.php');
require_once('OpenPayU/AuthType/TokenRequest.php');
require_once('OpenPayU/AuthType/Oauth.php');
include_once('OpenPayU/v2/Refund.php');
include_once('OpenPayU/v2/Order.php');
include_once('OpenPayU/v2/Retrieve.php');
include_once('OpenPayU/v2/Token.php');
include_once('OpenPayU/v2/Shop.php');