From f52dab80dbcb6721e7f3803bb69a8371ceae487e Mon Sep 17 00:00:00 2001 From: DariusIII Date: Wed, 18 Mar 2026 13:51:03 +0100 Subject: [PATCH] Remove genealabs/caffeine package as it is not used anymore --- composer.json | 1 - composer.lock | 63 +--------------------- config/genealabs-laravel-caffeine.php | 76 --------------------------- 3 files changed, 1 insertion(+), 139 deletions(-) delete mode 100644 config/genealabs-laravel-caffeine.php diff --git a/composer.json b/composer.json index 017c05313..8c820d4dd 100644 --- a/composer.json +++ b/composer.json @@ -53,7 +53,6 @@ "dariusiii/rarinfo": "^3.0", "dariusiii/tv-maze-php-api": "^2.0.0", "fakerphp/faker": "^1.23", - "genealabs/laravel-caffeine": "^12.0", "geoip2/geoip2": "^3.1", "guzzlehttp/guzzle": "^7.9", "intervention/image": "^3.11", diff --git a/composer.lock b/composer.lock index a1b96c3e3..37f3ccd91 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "8e894d46d3dd39e448e4a09d40c19504", + "content-hash": "290f455ccdb1cdfccdea94777666bf74", "packages": [ { "name": "aharen/omdbapi", @@ -1691,67 +1691,6 @@ ], "time": "2025-12-03T09:33:47+00:00" }, - { - "name": "genealabs/laravel-caffeine", - "version": "12.0.3", - "source": { - "type": "git", - "url": "https://github.com/mikebronner/laravel-caffeine.git", - "reference": "79a3cb163f1d3c79a004725cbd9ee17ed9e06415" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mikebronner/laravel-caffeine/zipball/79a3cb163f1d3c79a004725cbd9ee17ed9e06415", - "reference": "79a3cb163f1d3c79a004725cbd9ee17ed9e06415", - "shasum": "" - }, - "require": { - "illuminate/routing": "^10.0|^11.0|^12.0", - "illuminate/support": "^10.0|^11.0|^12.0" - }, - "require-dev": { - "orchestra/testbench": "^10.0", - "orchestra/testbench-browser-kit": "^10.0", - "orchestra/testbench-dusk": "^10.0", - "phpmd/phpmd": "^2.13", - "phpunit/phpunit": "^11.5.3" - }, - "type": "library", - "extra": { - "laravel": { - "providers": [ - "GeneaLabs\\LaravelCaffeine\\Providers\\Service" - ] - } - }, - "autoload": { - "psr-4": { - "GeneaLabs\\LaravelCaffeine\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike Bronner", - "email": "hello@genealabs.com" - } - ], - "description": "Keeping Your Laravel Forms Awake", - "support": { - "issues": "https://github.com/mikebronner/laravel-caffeine/issues", - "source": "https://github.com/mikebronner/laravel-caffeine/tree/12.0.3" - }, - "funding": [ - { - "url": "https://github.com/mikebronner", - "type": "github" - } - ], - "time": "2025-03-18T12:36:36+00:00" - }, { "name": "geoip2/geoip2", "version": "v3.3.0", diff --git a/config/genealabs-laravel-caffeine.php b/config/genealabs-laravel-caffeine.php deleted file mode 100644 index 2953d1161..000000000 --- a/config/genealabs-laravel-caffeine.php +++ /dev/null @@ -1,76 +0,0 @@ - 300000, - - /* - |-------------------------------------------------------------------------- - | Domain - |-------------------------------------------------------------------------- - | - | You may optionally configure a separate domain that you are running - | Caffeine for Laravel on. This may be of interest if you have a - | monitoring service that queries other apps. Setting this to - | null will use the domain of the current application. - | - | Default: null (null|string) - | - */ - 'domain' => null, - - /* - |-------------------------------------------------------------------------- - | Drip Endpoint URL - |-------------------------------------------------------------------------- - | - | Sometimes you may wish to white-label your app and not expose the AJAX - | request URLs as belonging to this package. To achieve that you can - | rename the URL used for dripping caffeine into your application. - | - | Default: 'genealabs/laravel-caffeine/drip' (string) - | - */ - 'route' => 'genealabs/laravel-caffeine/drip', // Customizable end-point URL - - /* - |-------------------------------------------------------------------------- - | Checking for Lapsed Drips - |-------------------------------------------------------------------------- - | - | If the browser is put to sleep on (for example on mobil devices or - | laptops), it will still cause an error when trying to submit the - | form. To avoid this, we force-reload the form 2 minutes prior - | to session time-out or later. Setting this setting to 0 - | will disable this check if you don't want to use it. - | - | Default: 2000 (int) - | - */ - 'outdated-drip-check-interval' => 2000, - - /* - |-------------------------------------------------------------------------- - | Use Route Middleware - |-------------------------------------------------------------------------- - | - | Drips are enabled via route middleware instead of global middleware. - | - | Default: false (bool) - | - */ - 'use-route-middleware' => false, - -];