summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: dcee84bd00dcb8b3287bebde176bd3b2d27673a6 (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
{
    "name": "aura/router",
    "type": "library",
    "description": "Powerful, flexible web routing for PSR-7 requests.",
    "keywords": [
        "route",
        "router",
        "routing",
        "psr-7"
    ],
    "homepage": "https://github.com/auraphp/Aura.Router",
    "license": "MIT",
    "authors": [
        {
            "name": "Aura.Router Contributors",
            "homepage": "https://github.com/auraphp/Aura.Router/contributors"
        }
    ],
    "require": {
        "php": ">=5.5.0",
        "psr/http-message": "~1.0",
        "psr/log": "~1.0"
    },
    "autoload": {
        "psr-4": {
            "Aura\\Router\\": "src/"
        }
    },
    "require-dev": {
        "zendframework/zend-diactoros": "~1.0",
        "phpunit/phpunit": "~5.7 || ~4.8"
    },
    "autoload-dev": {
        "psr-4": {
            "Aura\\Router\\": "tests/"
        }
    }
}