Package Data | |
---|---|
Maintainer Username: | zogxray |
Maintainer Contact: | zogxray@gmail.com (Viktor Pavlov) |
Package Create Date: | 2017-08-11 |
Package Last Update: | 2017-08-21 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-07 03:01:06 |
Package Statistics | |
---|---|
Total Downloads: | 374 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 3 |
Total Forks: | 2 |
Total Open Issues: | 0 |
Via Composer
$ composer require zogxray/wayforpay
Append the following line to the providers
key in config/app.php
to register the package:
Zogxray\Wayforpay\WayForPayServiceProvider::class,
The package supports auto-discovery, so if you use Laravel 5.5 or later you may skip registering the service provider and facades and instead run php artisan package:discover
.
If you like facades, you may also append the Wayforpay
facade to the aliases
key:
'Wayforpay' => Zogxray\Wayforpay\WayForPayFacade::class,
You may additionally publish the package configuration and language file using the vendor:publish
Artisan command:
php artisan vendor:publish --provider="Zogxray\Wayforpay\WayForPayServiceProvider"