⬆️ Upgrade from Laravel 7 to 8 for PHP 8
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
516cb44c86
commit
d982682a54
@ -8,28 +8,27 @@
|
|||||||
],
|
],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^7.2.5",
|
"php": "^8.0",
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"absmoca/leboncoin": "dev-master",
|
"artesaos/seotools": "^1.0",
|
||||||
"artesaos/seotools": "^0.18.0",
|
|
||||||
"emanueleminotto/simple-html-dom": "^1.5",
|
"emanueleminotto/simple-html-dom": "^1.5",
|
||||||
"fabpot/goutte": "^3.1",
|
"fabpot/goutte": "^4.0",
|
||||||
"fideloper/proxy": "^4.2",
|
"fideloper/proxy": "^4.2",
|
||||||
"fruitcake/laravel-cors": "^2.0",
|
"fruitcake/laravel-cors": "^2.0",
|
||||||
"guzzlehttp/guzzle": "^6.3",
|
"guzzlehttp/guzzle": "^7.0.1",
|
||||||
"laravel/framework": "^7.0",
|
"laravel/framework": "^8.0",
|
||||||
"laravel/tinker": "^2.0",
|
"laravel/tinker": "^2.0",
|
||||||
"laravel/ui": "^2.1",
|
"laravel/ui": "^3.0",
|
||||||
"spatie/laravel-feed": "^2.7",
|
"spatie/laravel-feed": "^4.0",
|
||||||
"spatie/laravel-query-builder": "^2.8",
|
"spatie/laravel-query-builder": "^4.0",
|
||||||
"ext-intl": "*"
|
"ext-intl": "*"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"facade/ignition": "^2.0",
|
"facade/ignition": "^2.3.6",
|
||||||
"fzaninotto/faker": "^1.9.1",
|
"fzaninotto/faker": "^1.9.1",
|
||||||
"mockery/mockery": "^1.3.1",
|
"mockery/mockery": "^1.3.1",
|
||||||
"nunomaduro/collision": "^4.1",
|
"nunomaduro/collision": "^5.0",
|
||||||
"phpunit/phpunit": "^8.5"
|
"phpunit/phpunit": "^9.0"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"optimize-autoloader": true,
|
"optimize-autoloader": true,
|
||||||
|
4118
composer.lock
generated
4118
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -22,6 +22,18 @@ return [
|
|||||||
'description' => 'La sélection',
|
'description' => 'La sélection',
|
||||||
'language' => 'fr-FR',
|
'language' => 'fr-FR',
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The image to display for the feed. For Atom feeds, this is displayed as
|
||||||
|
* a banner/logo; for RSS and JSON feeds, it's displayed as an icon.
|
||||||
|
* An empty value omits the image attribute from the feed.
|
||||||
|
*/
|
||||||
|
'image' => '',
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The format of the feed. Acceptable values are 'rss', 'atom', or 'json'.
|
||||||
|
*/
|
||||||
|
'format' => 'atom',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The view that will render the feed.
|
* The view that will render the feed.
|
||||||
*/
|
*/
|
||||||
@ -31,6 +43,12 @@ return [
|
|||||||
* The type to be used in the <link> tag
|
* The type to be used in the <link> tag
|
||||||
*/
|
*/
|
||||||
'type' => 'application/atom+xml',
|
'type' => 'application/atom+xml',
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The content type for the feed response. Set to an empty string to automatically
|
||||||
|
* determine the correct value.
|
||||||
|
*/
|
||||||
|
'contentType' => '',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
@ -11,7 +11,8 @@ use App\Parser\SeLoger;
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'parsers' => [
|
'parsers' => [
|
||||||
'leboncoin.fr' => LBC::class,
|
// FIXME https://packagist.org/packages/absmoca/leboncoin is not PHP 8 compatible because of "ext-json": "^1.6",
|
||||||
|
// 'leboncoin.fr' => LBC::class,
|
||||||
'seloger.com' => SeLoger::class,
|
'seloger.com' => SeLoger::class,
|
||||||
'pap.fr' => Pap::class,
|
'pap.fr' => Pap::class,
|
||||||
'ouestfrance-immo.com' => OuestFrance::class,
|
'ouestfrance-immo.com' => OuestFrance::class,
|
||||||
|
Loading…
Reference in New Issue
Block a user