From 40993601e1f40a62a262c8a9cda5dc6a235e400c Mon Sep 17 00:00:00 2001 From: Michael Gauthier Date: Mon, 4 Jan 2016 11:41:27 -0400 Subject: [PATCH] Add composer release. --- composer.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..e2c776b --- /dev/null +++ b/composer.json @@ -0,0 +1,37 @@ +{ + "name": "pear/payment_paypal_soap", + "description": "Provides an easy-to-use wrapper of PHP 5's SOAP client for use with the PayPal SOAP API.", + "type": "library", + "keywords": [ + "paypal", + "soap" + ], + "homepage": "https://github.com/pear/Payment_PayPal_SOAP", + "license": "MIT", + "authors": [ + { + "name": "Michael Gauthier", + "email": "mike@silverorange.com" + } + ], + "require": { + "php": ">=5.1.0,!=5.2.2,!=5.2.3,!=5.2.4,!=5.2.5,!=5.2.6", + "ext-soap": "*", + "pear/pear_exception": "*" + }, + "autoload": { + "psr-0": { + "Payment": "./" + } + }, + "include-path": [ + "./" + ], + "support": { + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Payment_PayPal_SOAP", + "source": "https://github.com/pear/Payment_PayPal_SOAP" + }, + "require-dev": { + "phpunit/phpunit": "*" + } +} \ No newline at end of file