/home/techb158/ileadtechnology.com/vendor/razorpay/razorpay
NameSizeModeActions
.github/-0755rm
documents/-0755rm
libs/-0755rm
non_composer_tests/-0755rm
src/-0755rm
tests/-0755rm
.editorconfig2530644editdlrm
.gitignore460644editdlrm
.semgrepignore00644editdlrm
.travis.yml17600644editdlrm
CHANGELOG.md76040644editdlrm
composer.json11110644editdlrm
Deprecated.php6040644editdlrm
doc.md6490644editdlrm
LICENSE10470644editdlrm
phpunit.xml.dist10430644editdlrm
Razorpay.php13060644editdlrm
README.md35750644editdlrm
release.txt800644editdlrm
Edit: /home/techb158/ileadtechnology.com/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) { } } ```