Remove genealabs/caffeine package as it is not used anymore

This commit is contained in:
DariusIII
2026-03-18 13:51:03 +01:00
parent 734f9870f9
commit f52dab80db
3 changed files with 1 additions and 139 deletions
-1
View File
@@ -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",
Generated
+1 -62
View File
@@ -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",
-76
View File
@@ -1,76 +0,0 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Drip Interval
|--------------------------------------------------------------------------
|
| Here you may configure the interval with which Caffeine for Laravel
| keeps the session alive. By default this is 5 minutes (expressed
| in milliseconds). This needs to be shorter than your session
| lifetime value configured set in "config/session.php".
|
| Default: 300000 (int)
|
*/
'drip-interval' => 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,
];