edbizarro/clash-royale-api

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "edbizarro/clash-royale-api",
    "description": "Clash Royale Api PHP SDK",
    "keywords": [
        "clash royale",
        "clash-royale-api"
    ],
    "homepage": "https://github.com/edbizarro/clash-royale-api",
    "license": "MIT",
    "authors": [
        {
            "name": "edbizarro",
            "email": "edbizarro@gmail.com",
            "homepage": "https://bizarro.me",
            "role": "Developer"
        }
    ],
    "require": {
        "php": "^7.1",
        "guzzlehttp/guzzle": "^7.0",
        "guzzlehttp/psr7": "^1.4",
        "tightenco/collect": "^7.4"
    },
    "require-dev": {
        "larapack/dd": "^1.0",
        "phpunit/phpunit": "^9.1",
        "friendsofphp/php-cs-fixer": "^2.13",
        "mockery/mockery": "^1.0",
        "orchestra/testbench": "^4.0"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "providers": [
                "Edbizarro\\ClashRoyale\\ClashRoyaleServiceProvider"
            ]
        }
    },
    "autoload": {
        "psr-4": {
            "Edbizarro\\ClashRoyale\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Edbizarro\\ClashRoyale\\Tests\\": "tests"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit",
        "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
    }
}