summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-07-01 18:59:31 +0200
committerRemi Collet <fedora@famillecollet.com>2016-07-01 18:59:31 +0200
commitd3386e4eca34388bbc84fac14747fe525ca9d574 (patch)
tree3d7a42d82ad9e3a95fc925e7d88dfa7d95279759 /composer.json
php-aura-router: 2.3.0 (New package)
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"
+ }
+ }
+}