From 2a3888262734284b974221614885308e65cbfb60 Mon Sep 17 00:00:00 2001 From: Joshua Estes Date: Tue, 1 Jul 2014 12:35:30 -0400 Subject: [PATCH] Updated composer.json and added a build.xml file to lint check php files --- .gitignore | 3 +++ build.xml | 13 +++++++++++++ composer.json | 36 +++++++++++++++++++++++++++++------- 3 files changed, 45 insertions(+), 7 deletions(-) create mode 100644 build.xml diff --git a/.gitignore b/.gitignore index 7eb4c07..967e733 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ *.swp lib/bitpay/bp_config.php +bin/ +vendor/ +composer.lock diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..0d3bea3 --- /dev/null +++ b/build.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/composer.json b/composer.json index 4686e66..80b9dc3 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,31 @@ { - "name": "bitpay/bitcoins", - "description": "Bitcoin payment module using the bitpay.com service", - "minimum-stability": "dev", - "type": "magento-module", - "require": { - "magento-hackathon/magento-composer-installer": "dev-master" - } + "name": "bitpay/magento-plugin", + "description": "Bitcoin payment module using the bitpay.com service", + "keywords": ["magento","bitcoin"], + "minimum-stability": "dev", + "type": "magento-plugin", + "homepage": "https://github.com/bitpay/magento-plugin", + "license": "MIT", + "support": { + "email": "support@bitpay.com", + "issues": "https://github.com/bitpay/magento-plugin/issues", + "source": "https://github.com/bitpay/magento-plugin" + }, + "require": { + "composer/installers": "~1.0" + }, + "require-dev": { + "phing/phing": "*" + }, + "config": { + "bin-dir": "bin" + }, + "extra": { + "branch-alias": { + "dev-master": "6.0.x-dev" + } + }, + "archive": { + "exclude": ["build.xml"] + } }