{
    "name": "ramsey/laravel-oauth2-instagram",
    "description": "A Laravel 5 service provider for league/oauth2-instagram.",
    "type": "library",
    "keywords": ["laravel", "oauth2", "instagram"],
    "homepage": "https://github.com/ramsey/laravel-oauth2-instagram",
    "license": "MIT",
    "authors": [
        {
            "name": "Ben Ramsey",
            "email": "ben@benramsey.com",
            "homepage": "https://benramsey.com"
        }
    ],
    "support": {
        "issues": "https://github.com/ramsey/laravel/oauth2/instagram/issues",
        "rss": "https://github.com/ramsey/laravel/oauth2/instagram/releases.atom",
        "source": "https://github.com/ramsey/laravel/oauth2/instagram.git"
    },
    "require": {
        "php": "^7.1.3",
        "illuminate/support": "^5.6",
        "league/oauth2-instagram": "^2.0"
    },
    "require-dev": {
        "jakub-onderka/php-parallel-lint": "^1",
        "mockery/mockery": "^1",
        "orchestra/testbench": "^3.6",
        "phpstan/phpstan": "^0.10",
        "phpstan/phpstan-mockery": "^0.10",
        "phpunit/phpunit": "^7",
        "squizlabs/php_codesniffer": "^3"
    },
    "autoload": {
        "psr-4": {
            "Ramsey\\Laravel\\OAuth2\\Instagram\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Ramsey\\Laravel\\OAuth2\\Instagram\\Test\\": "tests/"
        }
    },
    "scripts": {
        "lint": "parallel-lint src tests",
        "phpcs": "phpcs src tests --standard=psr12 -sp --colors",
        "phpstan": [
            "phpstan analyse src -c phpstan.neon --level max --no-progress",
            "phpstan analyse tests -c phpstan.neon --level 4 --no-progress"
        ],
        "phpunit": "phpunit --verbose --colors=always",
        "phpunit-ci": "phpunit --verbose --coverage-clover build/logs/clover.xml",
        "phpunit-coverage": "phpunit --verbose --colors=always --coverage-html build/coverage",
        "test": [
            "@lint",
            "@phpcs",
            "@phpstan",
            "@phpunit"
        ],
        "test-ci": [
            "@lint",
            "@phpcs",
            "@phpstan",
            "@phpunit-ci"
        ]
    },
    "config": {
        "sort-packages": true
    }
}
