summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..dc9803f
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,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"
+ }
+ }
+}