OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
3-31-025chanakya
/
assets
/
payment
/
vendor
/
razorpay
/
razorpay
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/26/2025 04:21:41 AM
rwxr-xr-x
📄
.editorconfig
253 bytes
03/26/2025 04:21:41 AM
rw-r--r--
📁
.git
-
03/26/2025 04:28:19 AM
rwxr-xr-x
📁
.github
-
03/26/2025 04:24:35 AM
rwxr-xr-x
📄
.gitignore
55 bytes
03/26/2025 04:21:41 AM
rw-r--r--
📄
.semgrepignore
0 bytes
03/26/2025 04:21:41 AM
rw-r--r--
📄
.travis.yml
1.68 KB
03/26/2025 04:21:41 AM
rw-r--r--
📄
CHANGELOG.md
9.12 KB
03/26/2025 04:21:41 AM
rw-r--r--
📄
Deprecated.php
604 bytes
03/26/2025 04:21:41 AM
rw-r--r--
📄
LICENSE
1.02 KB
03/26/2025 04:21:41 AM
rw-r--r--
📄
README.md
3.75 KB
03/26/2025 04:21:41 AM
rw-r--r--
📄
Razorpay.php
1.4 KB
03/26/2025 04:21:41 AM
rw-r--r--
📄
composer.json
1.08 KB
03/26/2025 04:21:41 AM
rw-r--r--
📄
doc.md
649 bytes
03/26/2025 04:21:41 AM
rw-r--r--
📁
documents
-
03/26/2025 04:23:15 AM
rwxr-xr-x
📁
libs
-
03/26/2025 04:24:35 AM
rwxr-xr-x
📁
non_composer_tests
-
03/26/2025 04:23:15 AM
rwxr-xr-x
📄
phpunit.xml.dist
1.02 KB
03/26/2025 04:21:41 AM
rw-r--r--
📄
release.txt
80 bytes
03/26/2025 04:21:41 AM
rw-r--r--
📁
src
-
03/26/2025 04:24:35 AM
rwxr-xr-x
📁
tests
-
03/26/2025 04:23:16 AM
rwxr-xr-x
Editing: Deprecated.php
Close
<?php /** * Backwards compatibility layer for Requests. * * Allows for Composer to autoload the old PSR-0 classes via the custom autoloader. * This prevents issues with _extending final classes_ (which was the previous solution). * * Please see the Changelog for the 2.0.4 release for upgrade notes. * * @package Requests * * @deprecated 2.0.4 Use the PSR-4 class names instead. */ define("REQUESTS_SILENCE_PSR0_DEPRECATIONS",true); if (class_exists('WpOrg\Requests\Autoload') === false) { require_once __DIR__. 'libs/Requests-2.0.4/src/Autoload.php'; } WpOrg\Requests\Autoload::register();