This package makes it easy to send notifications using Trendyol with Laravel 5.3.
You can install this package via composer:
composer require bahricanli/laravel-trendyol
Next add the service provider to your config/app.php
:
/*
* Package Service Providers...
*/
BahriCanli\Trendyol\TrendyolServiceProvider::class,
Register the Trendyol alias to your application. This registration is not optional because the channel itself uses this very alias.
'Trendyol' => BahriCanli\Trendyol\Facades\Trendyol::class,
Add your desired username, password
configuration to your config/services.php
file:
...
'Trendyol' => [
'username' => '',
'password' => '',
],
...
$response->groupId() will throw BadMethodCallException if the client is set to 'http'. $response->messageReportIdentifiers() will throw BadMethodCallException if the client is set to 'xml'.
change client configuration with caution.
Please see CHANGELOG for more information what has changed recently.
$ composer test
If you discover any security related issues, please email bahri@bahri.info instead of using the issue tracker.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.