From 46b09941a83991e51ee8557dbd61ecc8eee84071 Mon Sep 17 00:00:00 2001 From: David Zentgraf Date: Tue, 13 Nov 2012 12:41:55 +0100 Subject: [PATCH] adding composer description --- .gitignore | 1 + composer.json | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..22d0d82 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +vendor diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..3c19936 --- /dev/null +++ b/composer.json @@ -0,0 +1,20 @@ +{ + "name": "kunststube/rison", + "description": "A Rison encoder and decoder for PHP.", + "keywords": ["rison", "encode", "decode"], + "homepage": "https://github.com/deceze/Kunststube-Rison", + "authors": [ + { + "name": "David Zentgraf", + "email": "rison@kunststube.net", + "homepage": "http://kunststube.net" + } + ], + "autoload": { + "psr-0": { "Kunststube\\Rison": "" } + }, + "require": { + "php": ">=5.4.0" + }, + "target-dir": "Kunststube/Rison" +}