From 86852a3f7f9a519f4130c52ee065de3e9e4a09a9 Mon Sep 17 00:00:00 2001 From: till Date: Mon, 17 Feb 2014 17:43:44 +0100 Subject: [PATCH 1/2] Enhancement: composer setup --- .gitignore | 4 ++++ composer.json | 31 +++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..869f498 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +# composer related +composer.lock +composer.phar +vendor diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..99ab464 --- /dev/null +++ b/composer.json @@ -0,0 +1,31 @@ +{ + "authors": [ + { + "email": "shangxiao@php.net", + "name": "David Sanders", + "role": "Lead" + } + ], + "autoload": { + "classmap": [ + "./" + ] + }, + "description": "More info available on: http://pear.php.net/package/HTML_QuickForm_Rule_Spelling", + "license": "LGPL", + "name": "pear/html_quickform_rule_spelling", + "support": { + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=HTML_QuickForm_Rule_Spelling", + "source": "https://github.com/pear/HTML_QuickForm_Rule_Spelling" + }, + "type": "library", + "suggest": { + "ext-pspell": "May require the pspell PHP extension" + }, + "require": { + "pear/pear_exception": "*" + }, + "require-dev": { + "phpunit/phpunit": "*" + } +} \ No newline at end of file From c47cbfac15e63aeae525b3cd9565ec6ac9fa3a68 Mon Sep 17 00:00:00 2001 From: till Date: Tue, 18 Feb 2014 00:19:10 +0100 Subject: [PATCH 2/2] Enhancement: composer setup --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 99ab464..314dcc9 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,8 @@ "ext-pspell": "May require the pspell PHP extension" }, "require": { - "pear/pear_exception": "*" + "pear/pear_exception": "*", + "pear/html_quickform": "*" }, "require-dev": { "phpunit/phpunit": "*"