Updated composer.json and added a build.xml file to lint check php files

This commit is contained in:
Joshua Estes 2014-07-01 12:35:30 -04:00
parent d1d369c411
commit 2a38882627
3 changed files with 45 additions and 7 deletions

3
.gitignore vendored
View File

@ -1,2 +1,5 @@
*.swp
lib/bitpay/bp_config.php
bin/
vendor/
composer.lock

13
build.xml Normal file
View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="bitpay/magento-plugin" default="lint">
<target name="lint">
<phplint>
<fileset dir="app/code/community/Bitpay/Bitcoins">
<include name="**/*.php"/>
</fileset>
<fileset dir="lib/bitpay">
<include name="**/*.php"/>
</fileset>
</phplint>
</target>
</project>

View File

@ -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"]
}
}