Files
2026-05-13 09:43:32 -04:00

16 lines
414 B
PHP

<?php
/**
* Include this file in your application
* this file includes autoloader.php if using composer. includes custom actoloader if it is a custom installation of SDK
*/
define('PP_CONFIG_PATH',dirname(__FILE__).'/../config/');
if(file_exists(dirname(__FILE__).'/vendor/autoload.php'))
require 'vendor/autoload.php';
else
{
require 'PPAutoloader.php';
PPAutoloader::register();
}