asanzred/payscout

Laravel 5 Wrapper for Payscout Payments

dev-master / 1.0.x-dev 2020-08-10 14:47 UTC

This package is auto-updated.

Last update: 2022-06-16 22:57:14 UTC


README

Latest Version on Packagist Software License Total Downloads

Install

Via Composer

$ composer require smallworldfs/payscout

Add ServiceProvider in your app.php config file.

// config/app.php
'providers' => [
    ...
    Smallworldfs\Payscout\PayscoutServiceProvider::class,
]

and instead on aliases

// config/app.php
'aliases' => [
    ...
    'Payscout'           => Smallworldfs\Payscout\Facade::class,
]

Configuration

Publish the config by running:

    php artisan vendor:publish --provider="Smallworldfs\Payscout\PayscoutServiceProvider"

Usage

You can find an PayscoutController.php and routes.php with test routes and calls

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email smallworldfs@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.