├── README.md ├── assets ├── index.html └── style.css ├── composer.json ├── composer.lock ├── controllers ├── Razorpay.php └── index.html ├── index.html ├── libraries ├── Razor_pay_gateway.php └── index.html ├── razorpay-documentation.pdf ├── razorpay.php ├── uninstall.php ├── vendor ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json ├── razorpay │ └── razorpay │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Razorpay.php │ │ ├── composer.json │ │ ├── doc.md │ │ ├── non_composer_tests │ │ └── RazorpayTest.php │ │ ├── phpunit.xml.dist │ │ ├── release.txt │ │ ├── src │ │ ├── Addon.php │ │ ├── Api.php │ │ ├── ArrayableInterface.php │ │ ├── Card.php │ │ ├── Collection.php │ │ ├── Customer.php │ │ ├── Entity.php │ │ ├── Errors │ │ │ ├── BadRequestError.php │ │ │ ├── Error.php │ │ │ ├── ErrorCode.php │ │ │ ├── GatewayError.php │ │ │ ├── ServerError.php │ │ │ └── SignatureVerificationError.php │ │ ├── Invoice.php │ │ ├── Order.php │ │ ├── Payment.php │ │ ├── Plan.php │ │ ├── Refund.php │ │ ├── Request.php │ │ ├── Resource.php │ │ ├── Settlement.php │ │ ├── Subscription.php │ │ ├── Token.php │ │ ├── Transfer.php │ │ ├── Utility.php │ │ └── VirtualAccount.php │ │ └── tests │ │ ├── RazorpayTest.php │ │ └── bootstrap.php └── rmccue │ └── requests │ ├── .coveralls.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ └── create_pear_package.php │ ├── composer.json │ ├── docs │ ├── README.md │ ├── authentication-custom.md │ ├── authentication.md │ ├── goals.md │ ├── hooks.md │ ├── proxy.md │ ├── usage-advanced.md │ ├── usage.md │ └── why-requests.md │ ├── examples │ ├── basic-auth.php │ ├── cookie.php │ ├── cookie_jar.php │ ├── get.php │ ├── multiple.php │ ├── post.php │ ├── proxy.php │ ├── session.php │ └── timeout.php │ ├── library │ ├── Requests.php │ └── Requests │ │ ├── Auth.php │ │ ├── Auth │ │ └── Basic.php │ │ ├── Cookie.php │ │ ├── Cookie │ │ └── Jar.php │ │ ├── Exception.php │ │ ├── Exception │ │ ├── HTTP.php │ │ ├── HTTP │ │ │ ├── 304.php │ │ │ ├── 305.php │ │ │ ├── 306.php │ │ │ ├── 400.php │ │ │ ├── 401.php │ │ │ ├── 402.php │ │ │ ├── 403.php │ │ │ ├── 404.php │ │ │ ├── 405.php │ │ │ ├── 406.php │ │ │ ├── 407.php │ │ │ ├── 408.php │ │ │ ├── 409.php │ │ │ ├── 410.php │ │ │ ├── 411.php │ │ │ ├── 412.php │ │ │ ├── 413.php │ │ │ ├── 414.php │ │ │ ├── 415.php │ │ │ ├── 416.php │ │ │ ├── 417.php │ │ │ ├── 418.php │ │ │ ├── 428.php │ │ │ ├── 429.php │ │ │ ├── 431.php │ │ │ ├── 500.php │ │ │ ├── 501.php │ │ │ ├── 502.php │ │ │ ├── 503.php │ │ │ ├── 504.php │ │ │ ├── 505.php │ │ │ ├── 511.php │ │ │ └── Unknown.php │ │ ├── Transport.php │ │ └── Transport │ │ │ └── cURL.php │ │ ├── Hooker.php │ │ ├── Hooks.php │ │ ├── IDNAEncoder.php │ │ ├── IPv6.php │ │ ├── IRI.php │ │ ├── Proxy.php │ │ ├── Proxy │ │ └── HTTP.php │ │ ├── Response.php │ │ ├── Response │ │ └── Headers.php │ │ ├── SSL.php │ │ ├── Session.php │ │ ├── Transport.php │ │ ├── Transport │ │ ├── cURL.php │ │ ├── cacert.pem │ │ └── fsockopen.php │ │ └── Utility │ │ ├── CaseInsensitiveDictionary.php │ │ └── FilteredIterator.php │ ├── package.xml.tpl │ └── tests │ ├── Auth │ └── Basic.php │ ├── ChunkedEncoding.php │ ├── Cookies.php │ ├── Encoding.php │ ├── IDNAEncoder.php │ ├── IRI.php │ ├── Proxy │ └── HTTP.php │ ├── Requests.php │ ├── Response │ └── Headers.php │ ├── SSL.php │ ├── Session.php │ ├── Transport │ ├── Base.php │ ├── cURL.php │ └── fsockopen.php │ ├── bootstrap.php │ ├── phpunit.xml.dist │ └── utils │ └── proxy │ ├── proxy.py │ ├── start.sh │ └── stop.sh └── views ├── index.html └── pay.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/README.md -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/assets/index.html -------------------------------------------------------------------------------- /assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/assets/style.css -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/composer.lock -------------------------------------------------------------------------------- /controllers/Razorpay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/controllers/Razorpay.php -------------------------------------------------------------------------------- /controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/controllers/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/index.html -------------------------------------------------------------------------------- /libraries/Razor_pay_gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/libraries/Razor_pay_gateway.php -------------------------------------------------------------------------------- /libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/libraries/index.html -------------------------------------------------------------------------------- /razorpay-documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/razorpay-documentation.pdf -------------------------------------------------------------------------------- /razorpay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/razorpay.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/uninstall.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/.editorconfig -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | libs/ -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/.travis.yml -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/LICENSE -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/README.md -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/Razorpay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/Razorpay.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/composer.json -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/doc.md -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/non_composer_tests/RazorpayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/non_composer_tests/RazorpayTest.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/release.txt -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Addon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Addon.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Api.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/ArrayableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/ArrayableInterface.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Card.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Collection.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Customer.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Entity.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Errors/BadRequestError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Errors/BadRequestError.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Errors/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Errors/Error.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Errors/ErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Errors/ErrorCode.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Errors/GatewayError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Errors/GatewayError.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Errors/ServerError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Errors/ServerError.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Errors/SignatureVerificationError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Errors/SignatureVerificationError.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Invoice.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Order.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Payment.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Plan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Plan.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Refund.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Request.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Resource.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Settlement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Settlement.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Subscription.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Token.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Transfer.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/Utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/Utility.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/src/VirtualAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/src/VirtualAccount.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/tests/RazorpayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/tests/RazorpayTest.php -------------------------------------------------------------------------------- /vendor/razorpay/razorpay/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/razorpay/razorpay/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/.coveralls.yml -------------------------------------------------------------------------------- /vendor/rmccue/requests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/.gitignore -------------------------------------------------------------------------------- /vendor/rmccue/requests/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/.travis.yml -------------------------------------------------------------------------------- /vendor/rmccue/requests/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/rmccue/requests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/LICENSE -------------------------------------------------------------------------------- /vendor/rmccue/requests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/README.md -------------------------------------------------------------------------------- /vendor/rmccue/requests/bin/create_pear_package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/bin/create_pear_package.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/composer.json -------------------------------------------------------------------------------- /vendor/rmccue/requests/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/docs/README.md -------------------------------------------------------------------------------- /vendor/rmccue/requests/docs/authentication-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/docs/authentication-custom.md -------------------------------------------------------------------------------- /vendor/rmccue/requests/docs/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/docs/authentication.md -------------------------------------------------------------------------------- /vendor/rmccue/requests/docs/goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/docs/goals.md -------------------------------------------------------------------------------- /vendor/rmccue/requests/docs/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/docs/hooks.md -------------------------------------------------------------------------------- /vendor/rmccue/requests/docs/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/docs/proxy.md -------------------------------------------------------------------------------- /vendor/rmccue/requests/docs/usage-advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/docs/usage-advanced.md -------------------------------------------------------------------------------- /vendor/rmccue/requests/docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/docs/usage.md -------------------------------------------------------------------------------- /vendor/rmccue/requests/docs/why-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/docs/why-requests.md -------------------------------------------------------------------------------- /vendor/rmccue/requests/examples/basic-auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/examples/basic-auth.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/examples/cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/examples/cookie.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/examples/cookie_jar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/examples/cookie_jar.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/examples/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/examples/get.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/examples/multiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/examples/multiple.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/examples/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/examples/post.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/examples/proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/examples/proxy.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/examples/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/examples/session.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/examples/timeout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/examples/timeout.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Auth.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Auth/Basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Auth/Basic.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Cookie.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Cookie/Jar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Cookie/Jar.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/304.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/304.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/305.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/305.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/306.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/306.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/400.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/401.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/401.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/402.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/402.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/403.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/403.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/404.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/405.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/405.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/406.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/406.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/407.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/407.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/408.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/408.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/409.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/409.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/410.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/410.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/411.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/411.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/412.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/412.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/413.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/413.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/414.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/414.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/415.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/415.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/416.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/416.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/417.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/417.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/418.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/418.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/428.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/428.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/429.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/429.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/431.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/431.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/500.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/501.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/501.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/502.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/502.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/503.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/503.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/504.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/504.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/505.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/505.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/511.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/511.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/Transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/Transport.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Exception/Transport/cURL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Exception/Transport/cURL.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Hooker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Hooker.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Hooks.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/IDNAEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/IDNAEncoder.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/IPv6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/IPv6.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/IRI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/IRI.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Proxy.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Proxy/HTTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Proxy/HTTP.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Response.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Response/Headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Response/Headers.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/SSL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/SSL.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Session.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Transport.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Transport/cURL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Transport/cURL.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Transport/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Transport/cacert.pem -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Transport/fsockopen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Transport/fsockopen.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/library/Requests/Utility/FilteredIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/library/Requests/Utility/FilteredIterator.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/package.xml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/package.xml.tpl -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/Auth/Basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/Auth/Basic.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/ChunkedEncoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/ChunkedEncoding.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/Cookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/Cookies.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/Encoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/Encoding.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/IDNAEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/IDNAEncoder.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/IRI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/IRI.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/Proxy/HTTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/Proxy/HTTP.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/Requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/Requests.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/Response/Headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/Response/Headers.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/SSL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/SSL.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/Session.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/Transport/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/Transport/Base.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/Transport/cURL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/Transport/cURL.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/Transport/fsockopen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/Transport/fsockopen.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/utils/proxy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/utils/proxy/proxy.py -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/utils/proxy/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/utils/proxy/start.sh -------------------------------------------------------------------------------- /vendor/rmccue/requests/tests/utils/proxy/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/vendor/rmccue/requests/tests/utils/proxy/stop.sh -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/views/index.html -------------------------------------------------------------------------------- /views/pay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Razorpay-payment-gateway-for-perfex-crm/HEAD/views/pay.php --------------------------------------------------------------------------------