summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: dc9803f8c6115864d9281fbe24ca53b4a2451c2b (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
{
    "name": "aura/router",
    "type": "library",
    "description": "A web router implementation; given a URI path and a copy of $_SERVER, it will extract path-info parameter values for a specific route.",
    "keywords": [
        "route",
        "router",
        "routing"
    ],
    "homepage": "https://github.com/auraphp/Aura.Router",
    "license": "BSD-2-Clause",
    "authors": [
        {
            "name": "Aura.Router Contributors",
            "homepage": "https://github.com/auraphp/Aura.Router/contributors"
        }
    ],
    "require": {
        "php": ">=5.3.0"
    },
    "autoload": {
        "psr-4": {
            "Aura\\Router\\": "src/",
            "Aura\\Router\\_Config\\": "config/"
        }
    },
    "extra": {
        "aura": {
            "type": "library",
            "config": {
                "common": "Aura\\Router\\_Config\\Common"
            }
        }
    },
    "require-dev": {
        "aura/di": "~2.0"
    },
    "autoload-dev": {
        "psr-4": {
            "Aura\\Router\\": "tests/",
            "Aura\\Di\\": "vendor/aura/di/tests"
        }
    }
}