From d3386e4eca34388bbc84fac14747fe525ca9d574 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 1 Jul 2016 18:59:31 +0200 Subject: php-aura-router: 2.3.0 (New package) --- composer.json | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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" + } + } +} -- cgit