pixwell-dev / laravel-adyen
Bridge for adyen php api
Installs: 77
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 1
pkg:composer/pixwell-dev/laravel-adyen
Requires
- php: ^7.0
- adyen/php-api-library: ^1.3
- illuminate/support: 5.5.*
Requires (Dev)
- phpunit/phpunit: ^6.0
This package is not auto-updated.
Last update: 2025-10-06 12:02:43 UTC
README
This package can be used in Laravel 5.4 or higher.
You can install the package via composer:
composer require pixwell-dev/laravel-adyen
Now add the service provider in config/app.php
file:
'providers' => [ // ... Pixwell\LaravelAdyen\AdyenServiceProvider::class, ];
You can publish the config file with:
php artisan vendor:publish --provider="Pixwell\LaravelAdyen\AdyenServiceProvider" --tag="config"
Usage
Once setup, you can use the Adyen PHP classes as spelled out in the documentation.