bryglen / yii2-omnipay
thephpleague/omnipay for Yii 2
Installs: 6 546
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 1
Forks: 5
Open Issues: 0
Type:yii2-extension
Requires
- omnipay/omnipay: ~2.0
This package is not auto-updated.
Last update: 2024-11-13 10:03:49 UTC
README
Yii 2 use omni pay based on https://github.com/thephpleague/omnipay
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist bryglen/yii2-omnipay "1.0.0"
or add
"bryglen/yii2-omnipay": "1.0.0"
to the require section of your composer.json
file.
in your main.php your configuration would look like this
'components' => [ 'stripe' => [ 'class' => 'bryglen\omnipay\OmniPayComponent', 'name' => 'Stripe', // optional parameters //'testMode' => true, //'currency' => 'your_currency' 'parameters' => [ 'apiKey' => 'your_api_key' ] ] ]