PHP code example of craftcms / feed-me
1. Go to this page and download the library: Download craftcms/feed-me library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
craftcms / feed-me example snippets
return [
// disable default logging to database
'logging' => false,
];
return [
'components' => [
'log' => [
'monologTargetConfig' => [
// optionally, omit from Craft's default logs
'except' => ['feed-me'],
],
// add your own log target to write logs to file
'targets' => [
[
// log to file or STDOUT/STDERR if CRAFT_STREAM_LOG=1 is set
'class' => \craft\log\MonologTarget::class,
'name' => 'feed-me',
'categories' => ['feed-me'],
// Don't log request and env vars
'logContext' => false,
// Minimum level to log
'level' => \Psr\Log\LogLevel::INFO,
],
],
],
],
];