forked from auraphp/Aura.Router
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
23 lines (23 loc) · 730 Bytes
/
composer.json
File metadata and controls
23 lines (23 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "aura/router",
"type": "aura-package",
"description": "The Aura Router package implements web routing; given a URI path and a copy of $_SERVER, it will extract controller, action, and parameter values for a specific route.",
"keywords": [ "route", "router", "routing" ],
"homepage": "http://auraphp.github.com/Aura.Router",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Aura Contributors",
"homepage": "https://github.com/auraphp/Aura.Router/contributors"
}
],
"require": {
"php": ">=5.4.0",
"aura/installer-default": "1.0.0"
},
"autoload": {
"psr-0": {
"Aura\\Router": "src/"
}
}
}