{
    "name": "signifly/laravel-shopify",
    "description": "A simple package to handle communication with Shopify API",
    "homepage": "https://github.com/signifly/laravel-shopify",
    "license": "MIT",
    "authors": [
        {
            "name": "Morten Poul Jensen",
            "email": "mpj@signifly.com",
            "role": "Developer"
        }
    ],
    "require": {
        "php": "^7.4|^8.0",
        "guzzlehttp/guzzle": "^7.2",
        "illuminate/contracts": "^8.0|^9.0",
        "illuminate/http": "^8.0|^9.0",
        "illuminate/routing": "^8.0|^9.0",
        "illuminate/support": "^8.0|^9.0"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^3.0",
        "orchestra/testbench": "^6.0|^7.0",
        "phpunit/phpunit": "^9.0",
        "signifly/php-config": "^1.0"
    },
    "autoload": {
        "psr-4": {
            "Signifly\\Shopify\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Signifly\\Shopify\\Tests\\": "tests"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "providers": [
                "Signifly\\Shopify\\ShopifyServiceProvider"
            ],
            "aliases": {
                "Shopify": "Signifly\\Shopify\\Support\\Facades\\Shopify"
            }
        }
    }
}
