PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Ujah Chigozie peter   PHP Payment Gateway Library   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Payment Gateway Library
Process payments with multiple gateways
Author: By
Last change: Update composer.json
Date: 4 months ago
Size: 1,980 bytes
 

Contents

Class file image Download
{ "name": "nanoblocktech/payment-gateways", "type": "library", "description": "PHP class for payment gateways, using same code to process different payment merchants.", "license": "MIT", "keywords": ["PHP", "luminova", "payment gateway", "paystack", "stripe", "braintree", "php payment gateway"], "authors": [ { "name": "Ujah Chigozie", "email": "ujahchigozie@gmail.com" }, { "name": "Nanoblock Technology", "email": "code@nanoblocktech.com" } ], "support": { "issues": "https://github.com/nanoblocktech/payment-gateways/issues", "source": "https://github.com/nanoblocktech/payment-gateways" }, "require": { "php": "^8.0" }, "require-dev": { "phpstan/extension-installer": "^1.3", "phpstan/phpstan": "^1.10.2", "nikic/php-parser": "^4.17.1", "rector/rector": "0.18.3", "phpunit/phpunit": "^9.1" }, "suggest": { "ext-curl": "Needed if you use CURLRequest class" }, "extra": { "branch-alias": { "dev-master": "0.1-dev" } }, "autoload": { "psr-4": { "Luminova\\ExtraUtils\\Payment\\": "src/" } }, "config": { "allow-plugins": { "phpstan/extension-installer": true }, "optimize-autoloader": true, "sort-packages": true }, "scripts": { "run-analyze": [ "Composer\\Config::disableProcessTimeout", "bash -c \"XDEBUG_MODE=off phpstan analyse\"" ], "run-process": [ "Composer\\Config::disableProcessTimeout", "rector process --dry-run" ] }, "scripts-descriptions": { "run-analyze": "Run static analysis", "run-process": "Analyze coding style" }, "minimum-stability": "dev", "prefer-stable": true }