{
    "name": "bittools/skyhub-php",
    "description": "This is the official PHP SDK for integration with SkyHub.",
    "type": "library",
    "require": {
        "php": ">=5.4",
        "guzzlehttp/guzzle": "^5.3",
        "monolog/monolog": "^1.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^5",
        "squizlabs/php_codesniffer": "^3.0@dev"
    },
    "autoload": {
        "psr-4": {
            "SkyHub\\": "src/"
        },
        "files": [
            "src/functions.php"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "SkyHubTest\\": "test/"
        }
    },
    "license": "MIT",
    "authors": [
        {
            "name": "Tiago Sampaio",
            "email": "tiago@tiagosampaio.com",
            "role": "Developer"
        }
    ],
    "support": {
        "email": "sdk@e-smart.com.br"
    },
    "minimum-stability": "stable",
    "prefer-stable": true,
    "scripts": {
        "phpunit": [
            "vendor/bin/phpunit -c ./phpunit.xml test/unit"
        ],
        "phpcs": [
            "vendor/bin/phpcs --standard=PSR2 --severity=1 src"
        ],
        "tests": [
            "@phpunit",
            "@phpcs"
        ]
    }
}

