{
    "name": "linio/seller-center-sdk",
    "type": "project",
    "description": "Linio Software Development Kit",
    "license": "BSD-3-Clause",
    "minimum-stability": "dev",
    "authors": [
        {
            "name": "Martín San Juan",
            "email": "martin.sanjuan@linio.com",
            "role": "Software Engineer Team Leader"
        },
        {
            "name": "Emiliano Castro",
            "email": "emiliano.castro@linio.com",
            "role": "Junior Software Engineer"
        },
        {
            "name": "Matías Cáceres",
            "email": "matias.caceres@linio.com",
            "role": "Junior Software Engineer"
        }
    ],
    "prefer-stable": true,
    "require": {
        "php": "^7.1",
        "ext-json": "*",
        "ext-simplexml": "*",
        "linio/util": "^2.2|^3.0",
        "nyholm/psr7": "^1.3",
        "php-http/discovery": "^1.12",
        "php-http/httplug": "^2.2",
        "psr/log": "^1.1"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^2.16",
        "fzaninotto/faker": "^1.8",
        "infection/infection": "^0.13.6",
        "php-http/guzzle6-adapter": "^2.0",
        "phpspec/prophecy": "^1.8",
        "phpstan/phpstan": "^0.11.15",
        "phpunit/phpunit": "^7.5",
        "symfony/var-dumper": "^4.4"
    },
    "suggest" : {
        "php-http/guzzle5-adapter": "~2.0 || To use Guzzle client v5. See more: https://github.com/LinioIT/seller-center-sdk/tree/master#quick-start",
        "php-http/guzzle6-adapter": "~2.0 || To use Guzzle client v6. See more: https://github.com/LinioIT/seller-center-sdk/tree/master#quick-start"
    },
    "config": {
        "preferred-install": {
            "*": "dist"
        },
        "sort-packages": true
    },
    "autoload": {
        "psr-4": {
            "Linio\\SellerCenter\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Linio\\SellerCenter\\": [
                "tests/",
                "tests/Functional",
                "tests/Integration",
                "tests/Unit",
                "tests/Providers"
            ]
        }
    },
    "scripts": {
        "lint": "php-cs-fixer fix --verbose --show-progress=estimating",
        "lint:check": [
            "php-cs-fixer fix --dry-run --verbose --show-progress=estimating"
        ],
        "phpunit": "phpunit",
        "phpstan": "phpstan analyze",
        "infection": "infection",
        "test": [
            "@lint:check",
            "@phpunit",
            "@phpstan"
        ]
    }
}
