summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: c31bdf1c84f1920f26d3dd9e897d30b0c67134f1 (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
{
    "name": "zendframework/zend-uri",
    "description": "a component that aids in manipulating and validating \u00bb Uniform Resource Identifiers (URIs)",
    "license": "BSD-3-Clause",
    "keywords": [
        "zf2",
        "uri"
    ],
    "homepage": "https://github.com/zendframework/zend-uri",
    "autoload": {
        "psr-4": {
            "Zend\\Uri\\": "src/"
        }
    },
    "require": {
        "php": "^5.5 || ^7.0",
        "zendframework/zend-escaper": "^2.5",
        "zendframework/zend-validator": "^2.5"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "2.5-dev",
            "dev-develop": "2.6-dev"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "ZendTest\\Uri\\": "test/"
        }
    },
    "require-dev": {
        "fabpot/php-cs-fixer": "1.7.*",
        "phpunit/PHPUnit": "~4.0"
    }
}