keskinbu/php-github-api

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "keskinbu/php-github-api",
    "type": "library",
    "description": "GitHub API v3 client",
    "homepage": "https://github.com/keskinbu/php-github-api",
    "keywords": ["github", "gh", "api", "gist"],
    "license": "GNU",
    "authors": [
        {
            "name": "Burak Keskin",
            "email": "burak@burakkeskin.com.tr",
            "homepage": "http://github.com/keskinbu"
        }
    ],
    "require": {
        "php": "^7.1",
        "guzzlehttp/guzzle": "^6.3",
        "vlucas/phpdotenv": "^2.5"
    },
    "require-dev": {
        "phpunit/phpunit": "^7",
        "codeception/codeception": "^2.4"
    },
    "autoload": {
        "psr-4": { "Github\\": "src/Github/" }
    },
    "autoload-dev": {
        "psr-4": { "Github\\Tests\\": "tests/"}
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "extra": {
        "branch-alias": {
            "dev-master": "1.0.x-dev"
        }
    }
}