Package Data | |
---|---|
Maintainer Username: | joecohens |
Package Create Date: | 2014-09-22 |
Package Last Update: | 2023-06-01 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-14 15:01:15 |
Package Statistics | |
---|---|
Total Downloads: | 11,940 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 49 |
Total Watchers: | 8 |
Total Forks: | 5 |
Total Open Issues: | 0 |
Supported Gateways:
Begin by installing this package through Composer. Edit your project's composer.json
file to require shoperti/payme
.
"require": {
"shoperti/payme": "2.0-dev"
}
Next, update Composer from the Terminal:
composer update
// Create a new PayMe instance choosing the driver
$config = [
'driver' => 'stripe',
'private_key' => 'secret_key',
'public_key' => 'public_key',
];
$payme = new Shoperti\PayMe\PayMe($config);
// or
$payme = PayMe::make($config);
// Make a charge
$response = $payme->charges()->create('100', 'tok_test', []);
if (!$response->success()) {
return ':(';
}
return 'Hurray!';
You can also use our factory.
$payme = new Shoperti\PayMe\PayMeFactory();
// Make a charge
$response = $payme->make($config)->charges()->create('100', 'tok_test', []);
if (!$response->success()) {
return ':(';
}
return 'Hurray!';
See the tests for more examples.
If you are looking for the old API we still have branch 1.0
PayMe is licensed under The MIT License (MIT).