A little Laravel package to communicate with Stripe.
You can install the package via composer:
composer require macsidigital/laravel-stripe
The service provider should automatically register for For Laravel > 5.4.
For Laravel < 5.5, open config/app.php and, within the providers array, append:
MacsiDigital\Stripe\Providers\StipeServiceProvider::class
Publish the configuration file
php artisan vendor:publish --provider="MacsiDigital\Stripe\Providers\StripeServiceProvider"
This will create a xero/config.php within your config directory. Check the Stripe documentation for the relevant values in the config.php file. Ensure that the location of the RSA keys matches.
Everything has been setup to be similar to Laravel syntax.
At present there is no PHP Unit Testing, but we plan to add it in the future.
- Tests, tests, tests
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.