samsonasik
released this
Added ability to allow or not include $_FILES to email attachments via include-files-to-attachments config under email-notification-settings:
<?php
namespace ErrorHeroModule;
// ...
return [
'error-hero-module' => [
// ...
'email-notification-settings' => [
// ...
// to include or not $_FILES on send mail
'include-files-to-attachments' => true,
// ...
],
// ...
],
];
Assets
2
- update deprecated function call of toZend() to toLaminas() on Psr7ServerRequest
- naming fixes
Assets
2
upgrade for full laminas and mezzio application
Assets
2
samsonasik
released this
- added ability to exclude specific PHP E_* error and Exception with only for specific message provided. The exclude configuration can be like the following:
// excluded php errors ( http://www.php.net/manual/en/errorfunc.constants.php )
'exclude-php-errors' => [
// can be specific error
\E_USER_DEPRECATED,
// can be specific error with specific message
[\E_WARNING, 'specific error message'],
],
// excluded exceptions
'exclude-exceptions' => [
// can be an Exception class or class extends Exception class
\App\Exception\MyException::class,
// can be specific exception with specific message
[\RuntimeException::class, 'specific exception message'],
// or specific Error class with specific message
[\Error::class, 'specific error message'],
],
Assets
2
samsonasik
released this
- use zend-log:^2.10 to extends existing ZF Json Log formatter
- use kahlan dev-dev for php 7.4 usage
- use squizlabs/php_codesniffer:3.4.2
- remove unused create var on object creation from string when possible
Assets
2
samsonasik
released this
- using service named Zend\Db\Adapter\AdapterInterface in configs
- drop support for "elie29/zend-phpdi-config":"<4.0"
Assets
2
samsonasik
released this
exclude controller, and action from console url info
Assets
2
samsonasik
released this
fix undefined index files_data in cli env
Assets
2
samsonasik
released this
Assets
2
- using layout->captureTo() to get ViewModel captureTo property
- reduce request parameter in Expressive middleware
- move error message has Uncaught prefix to private function
- move phpError() function to trait
- update zend-uri requirement to use ^2.7 for strtolower host