summaryrefslogtreecommitdiffstats
path: root/vendor/pear/net_url2/composer.json
blob: b33698e5d55409d2d5847147736d0d5c359542e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
    "name": "pear/net_url2",
    "description": "Class for parsing and handling URL. Provides parsing of URLs into their constituent parts (scheme, host, path etc.), URL generation, and resolving of relative URLs.",
    "type": "library",
    "keywords": [
        "pear",
        "net",
        "url",
        "uri",
        "networking",
        "rfc3986"
    ],
    "homepage": "https://github.com/pear/Net_URL2",
    "license": "BSD-3-Clause",
    "authors": [
        {
            "name": "Tom Klingenberg",
            "email": "tkli@php.net"
        },
        {
            "name": "David Coallier",
            "email": "davidc@php.net"
        },
        {
            "name": "Christian Schmidt",
            "email": "chmidt@php.net"
        }
    ],
    "support": {
        "issues": "https://pear.php.net/bugs/search.php?cmd=display&package_name[]=Net_URL2",
        "source": "https://github.com/pear/Net_URL2"
    },
    "require": {
        "php": ">=5.1.4"
    },
    "autoload": {
        "classmap": ["Net/URL2.php"]
    },
    "extra": {
        "branch-alias": {
            "dev-master": "2.2.x-dev"
        }
    },
    "require-dev": {
        "phpunit/phpunit": ">=3.3.0"
    }
}