summaryrefslogtreecommitdiffstats
path: root/vendor/pear/net_url2/composer.json
blob: 00e4b2e4e90e0fd749383e7a100f15d7667a6c20 (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
48
49
50
51
52
{
    "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": {
        "psr-0": {
            "Net": ""
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "2.0.x-dev"
        }
    },
    "include-path": [
        "./"
    ],
    "require-dev": {
        "phpunit/phpunit": ">=3.3.0"
    }
}