daanra / laravel-ecurring
A package for interacting with eCurring's API in Laravel
Installs: 5 792
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: ^7.4|^8.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- orchestra/testbench: ^5.0
- phpunit/phpunit: ^9.0
- psalm/plugin-laravel: ^1.2
- vimeo/psalm: ^3.11
This package is auto-updated.
Last update: 2024-11-09 23:48:32 UTC
README
A package for interacting with eCurring's API. Their API documentation can be found here.
This package is still being developed.
Installation
You can install the package via composer:
composer require daanra/laravel-ecurring
You can publish the config file with:
php artisan vendor:publish --provider="Daanra\Ecurring\EcurringServiceProvider" --tag="config"
Usage
use Daanra\Ecurring\Facades\Ecurring; $customer = Ecurring::customer()->create([ 'first_name' => 'Test', 'last_name' => 'Tester', 'email' => 'test@example.com' ]); $subscription = Ecurring::subscription()->find(123);
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.