Skip to content

@samsonasik samsonasik released this May 20, 2020 · 1 commit to master since this release

Build Status Coverage Status

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

@samsonasik samsonasik released this Feb 3, 2020 · 11 commits to master since this release

  • update deprecated function call of toZend() to toLaminas() on Psr7ServerRequest
  • naming fixes
Assets 2

@samsonasik samsonasik released this Jan 23, 2020 · 14 commits to master since this release

upgrade for full laminas and mezzio application

Assets 2

@samsonasik samsonasik released this Dec 16, 2019 · 24 commits to master since this release

  • 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 samsonasik released this Sep 14, 2019 · 36 commits to master since this release

  • 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 samsonasik released this Jul 17, 2019 · 41 commits to master since this release

  • using service named Zend\Db\Adapter\AdapterInterface in configs
  • drop support for "elie29/zend-phpdi-config":"<4.0"
Assets 2

@samsonasik samsonasik released this May 25, 2019 · 48 commits to master since this release

exclude controller, and action from console url info

Assets 2

@samsonasik samsonasik released this May 7, 2019 · 53 commits to master since this release

fix undefined index files_data in cli env

Assets 2

@samsonasik samsonasik released this Mar 3, 2019 · 63 commits to master since this release

Build Status Coverage Status PHPStan

  • added support of ContainerWrapper class usage by elie29/zend-phpdi-config ^3.0.9 and ^4.0
Assets 2

@samsonasik samsonasik released this Feb 28, 2019 · 67 commits to master since this release

  • 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
Assets 2
You can’t perform that action at this time.