{
    "name": "iamstuartwilson/strava",
    "description": "PHP implementation of the Strava V3 API",
    "license": "MIT",
    "authors": [
        {
            "name": "Stuart Wilson",
            "email": "bonjour@iamstuartwilson.com"
        }
    ],
    "minimum-stability": "dev",
    "prefer-stable": true,
    "require": {
        "php": ">=5.5"
    },
    "require-dev": {
        "phpunit/phpunit": "~4.8"
    },
    "autoload": {
        "psr-0" : {
            "Iamstuartwilson\\" : "src/"
        }
    },
    "scripts": {
        "ci:lint": "find config src tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
        "ci:tests": "./vendor/bin/phpunit tests/",
        "ci:static": [
            "@ci:lint"
        ],
        "ci:dynamic": [
            "@ci:tests"
        ],
        "ci": [
            "@ci:static",
            "@ci:dynamic"
        ]
    }
}
