paycom / integration-template
Set of classes to easy integration with Paycom (Payme) payment system
Installs: 268
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 1
Forks: 28
Open Issues: 2
pkg:composer/paycom/integration-template
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-11-03 12:09:58 UTC
README
Please, use the following up to date repo instead https://github.com/PaycomUZ/paycom-integration-php-template
Paycom integration template
Prerequisites
Installation via Composer
Change current directory to your project folder and install package:
cd my-shop-project
composer create-project paycom/integration-template
Installation via Git
git clone https://github.com/umidjons/paycom-integration-php-template.git
cd paycom-integration-php-template
composer dumpautoload
From now you can use classes from package as following:
<?php // File `my-shop-project/api/index.php` require_once 'vendor/autoload.php'; use Paycom\Application; // load configuration $paycomConfig = require_once 'paycom.config.php'; $application = new Application($paycomConfig); $application->run();
Make copy of paycom.config.sample.php as paycom.config.php and set your real settings there.
Assuming your domain as https://myshop.uz,
now you can set entry point URL to handle requests from Paycom as https://myshop.uz/api/index.php.