From f528ec05d2c197daf96cde79583bdf293132fe58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Sessing=C3=B8?= Date: Fri, 18 Sep 2015 18:51:47 +0200 Subject: [PATCH] [TASK] Added composer.json --- composer.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..bc787f9 --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "pecee/simple-router", + "description": "Simple, fast PHP router that is easy to get integrated and in almost any project. Heavily inspired by the Laravel router.", + "keywords": [ "router", "routing", "laravel", "pecee" ], + "license": "MIT", + "support": { + "source": "https://github.com/skipperbent/simple-php-router/issues" + }, + "authors": [ + { + "name": "Simon Sessingø", + "email": "simon.sessingoe@gmail.com" + } + ], + "require": { + + }, + "require-dev": { + "phpunit/phpunit": "4.*" + }, + "autoload": { + "psr-4": { + "Pecee\\": "src/Pecee/" + } + }, + "config": { + "preferred-install": "dist" + } +} \ No newline at end of file