{
    "name": "globalpayments/globalpayments-woocommerce",
    "description": "This extension allows WooCommerce to use the available Global Payments payment gateways. All card data is tokenized using the respective gateway's tokenization service.",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Global Payments"
        }
    ],
    "autoload": {
        "psr-4": {
            "GlobalPayments\\WooCommercePaymentGatewayProvider\\": "src/"
        }
    },
    "require": {
        "globalpayments/php-sdk": "14.1.15",
        "psr/log": "^1.1"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.5",
        "squizlabs/php_codesniffer": "^3.5",
        "phpstan/phpstan": "^0.12.69"
    },
    "scripts": {
        "test": [
            "phpcs",
            "phpstan analyse --level 8 src test",
            "phpunit"
        ]
    }
}