generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 2
Installation and Configuration
Alex edited this page Feb 6, 2023
·
1 revision
You can install the package via composer:
composer require aon2003/laravel-trustpilotYou can publish the config file with:
php artisan vendor:publish --tag="trustpilot-config"This is the contents of the published config file:
return [
/*
|--------------------------------------------------------------------------
| Default Domain
|--------------------------------------------------------------------------
|
| This is the domain for which the reviews will be scraped by default.
| Supports subdomains.
*/
'domain' => 'www.example.com',
/*
|--------------------------------------------------------------------------
| Default Language
|--------------------------------------------------------------------------
|
| This is the language in which the reviews will be scraped by default.
|
| Supported values: "all", ISO 639-1 language codes (ex.: "en", "ru")
|
*/
'language' => 'all',
];