OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
quiz
/
backup
/
payment
/
vendor
/
razorpay
/
razorpay
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/15/2025 11:21:58 AM
rwxr-xr-x
📄
.editorconfig
253 bytes
02/15/2025 11:21:58 AM
rw-r--r--
📁
.github
-
02/15/2025 11:22:11 AM
rwxr-xr-x
📄
.gitignore
55 bytes
02/15/2025 11:21:58 AM
rw-r--r--
📄
.semgrepignore
0 bytes
02/15/2025 11:21:58 AM
rw-r--r--
📄
.travis.yml
1.68 KB
02/15/2025 11:21:58 AM
rw-r--r--
📄
CHANGELOG.md
9.12 KB
02/15/2025 11:21:58 AM
rw-r--r--
📄
Deprecated.php
604 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
LICENSE
1.02 KB
02/15/2025 11:21:58 AM
rw-r--r--
📄
README.md
3.75 KB
02/15/2025 11:21:58 AM
rw-r--r--
📄
Razorpay.php
1.4 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
composer.json
1.08 KB
02/15/2025 11:21:58 AM
rw-r--r--
📄
doc.md
649 bytes
02/15/2025 11:21:58 AM
rw-r--r--
📁
documents
-
02/15/2025 11:22:08 AM
rwxr-xr-x
📁
libs
-
02/15/2025 11:22:11 AM
rwxr-xr-x
📁
non_composer_tests
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📄
phpunit.xml.dist
1.02 KB
02/15/2025 11:21:58 AM
rw-r--r--
📄
release.txt
80 bytes
02/15/2025 11:21:58 AM
rw-r--r--
📁
src
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📁
tests
-
05/19/2025 10:07:16 AM
rwxr-xr-x
Editing: doc.md
Close
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) { } } ```