function commerce_stripe_libraries_info in Commerce Stripe 7
Same name and namespace in other branches
- 7.3 commerce_stripe.module \commerce_stripe_libraries_info()
- 7.2 commerce_stripe.module \commerce_stripe_libraries_info()
Implements hook_libraries_info().
File
- ./
commerce_stripe.module, line 36 - This module provides Stripe (http://stripe.com/) payment gateway integration to Commerce. Commerce Stripe offers a PCI-compliant way to process payments straight from you Commerce shop.
Code
function commerce_stripe_libraries_info() {
return array(
'stripe-php' => array(
'name' => 'Stripe API Client Library for PHP',
'vendor url' => 'https://stripe.com/',
'download url' => 'https://github.com/stripe/stripe-php',
'dependencies' => array(),
'version arguments' => array(
'file' => 'VERSION',
'pattern' => '/(\\d+\\.\\d+\\.\\d+)/',
),
'files' => array(
'php' => array(
'lib/Stripe.php',
),
),
),
);
}