/home/techb158/ileadtechnology.com/SSM/vendor/razorpay/razorpay
NameSizeModeActions
non_composer_tests/-0755rm
src/-0755rm
tests/-0755rm
.editorconfig2530644editdlrm
.gitignore390644editdlrm
.travis.yml17420644editdlrm
CHANGELOG.md47390644editdlrm
composer.json10820644editdlrm
doc.md6490644editdlrm
LICENSE10470644editdlrm
phpunit.xml.dist12540644editdlrm
Razorpay.php13040644editdlrm
README.md72810644editdlrm
release.txt800644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/razorpay/razorpay/doc.md (649B)
This document talks about the implementation of the code for the Api. Everything comes under namespace Razorpay\Api\. Namespaces put a requirement of PHP 5.3 minimum ```php namespace Razorpay\ class Api { // Contains a __get function that returns the appropriate // class object when one tries to access them. } namespace Razorpay\ class Client { // Handles request and response // Uses Composer:Requests internally } class Payment { public function get($id) { } public function fetch($options) { } public function capture($id) { } public function refund($id) { } } ```