Files
app
bootstrap
config
app.php
auth.php
broadcasting.php
cache.php
cors.php
database.php
filesystems.php
hashing.php
logging.php
mail.php
parser.php
query-builder.php
queue.php
seotools.php
services.php
session.php
view.php
database
public
resources
routes
storage
tests
.editorconfig
.env.example
.gitattributes
.gitignore
.styleci.yml
README.md
artisan
composer.json
composer.lock
package-lock.json
package.json
phpunit.xml
server.php
webpack.mix.js
MyHomeCollection/config/parser.php
2020-07-27 12:46:20 +02:00

16 lines
338 B
PHP

<?php
use App\Parser\LBC;
use App\Parser\OuestFrance;
use App\Parser\Pap;
use App\Parser\SeLoger;
return [
'parsers' => [
'leboncoin.fr' => LBC::class,
'seloger.com' => SeLoger::class,
'pap.fr' => Pap::class,
'ouestfrance-immo.com' => OuestFrance::class,
],
];