From 96054c0c9065f2a215d069906b597f444de7d216 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 10 Apr 2013 18:43:41 +0200 Subject: [PATCH] Add composer.json, fixes #9 --- composer.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..4a34c48 --- /dev/null +++ b/composer.json @@ -0,0 +1,23 @@ +{ + "name": "seld/php-console", + "description": "A console to quickly try and run PHP code in your browser", + "keywords": ["console", "php"], + "homepage": "http://github.com/Seldaek/php-console", + "type": "library", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "require": { + "php": ">=5.2.0" + }, + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + } +}