Todd Mannherz
Todd Mannherz
The session lifetime for logging into PHPCI is hardcoded into `public/index.php`: ``` php session_set_cookie_params(43200); // Set session cookie to last 12 hours. session_start(); ``` At the very least, the session...
`BinaryRenderer` now takes an optional second constructor param that allows setting custom args for compiling mjml.
Currently, the package only does file-to-content type conversion via the `lookupMimeType` function. As the extension maps already exist, it'd be easy to add both sides of the lookup, something like:...
### Ziggy version v2.1.0 ### Laravel version v10.48.4 ### Description We have a route whose sole parameter comes from the DB: ```php Route::get('{catalog_uri}', fn() => view('pdp')) ->where('catalog_uri', '^/p/.+$') ->name('catalog.pdp'); ```...
Are you planning to support PHP 8.3? Pimcore supports it as of a couple months ago but the PHP version in this repo's compose.json file is currently locked to 8.1/8.2:...
### Pimcore version v2024.3 ### Steps to reproduce A type error is thrown when a numeric range field is saved on a data object. This was all reproduced on the...
Adds support for PHP 8.4. Prior to these changes, the following deprecations would be logged when accessing this package: ``` Rinvex\Language\LanguageLoader::filter(): Implicitly marking parameter $callback as nullable is deprecated, the...