{
    "name": "league/uri",
    "type": "library",
    "description" : "URI manipulation library",
    "keywords": ["url", "uri", "rfc3986", "psr-7", "parse_url", "http", "https", "ws", "ftp", "data-uri"],
    "license": "MIT",
    "homepage": "http://uri.thephpleague.com",
    "authors": [
        {
            "name" : "Ignace Nyamagana Butera",
            "email" : "nyamsprod@gmail.com",
            "homepage" : "https://nyamsprod.com"
        }
    ],
    "support": {
        "forum": "https://groups.google.com/forum/#!forum/thephpleague",
        "issues": "https://github.com/thephpleague/uri/issues"
    },
    "require": {
        "ext-mbstring" : "*",
        "ext-intl" : "*",
        "ext-fileinfo": "*",
        "jeremykendall/php-domain-parser": "4.0.3-alpha",
        "php" : ">=5.5.9",
        "psr/http-message": "^1.0"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^1.9",
        "phpunit/phpunit": "^4.0",
        "zendframework/zend-diactoros": "^1.3"
    },
    "autoload": {
        "psr-4": {
            "League\\Uri\\": "src"
        },
        "files": ["src/functions_include.php"]
    },
    "autoload-dev": {
        "psr-4": {
            "League\\Uri\\Test\\": "test"
        }
    },
    "scripts": {
        "test": "phpunit --coverage-text; php-cs-fixer fix -v --diff --dry-run;",
        "phpunit": "phpunit --coverage-text",
        "phpcs": "php-cs-fixer fix -v --diff --dry-run;"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "4.2.x-dev"
        }
    },
    "config": {
        "sort-packages": true
    }
}
