CompatInfo 4.3.0 has just been released.

Add support of PHP 5.6.10, PHP 5.5.26 and PHP 5.4.42

News:

  • DB structure has evolved to implement deprecated elements. See commits 7b5e1d4 and 296cb33

  • reference:show command display now when (first version) an element is deprecated.

  • Filter feature (see how to build your own filter) may be used to retrieve easily all deprecated elements in any report.

    E.g: content of YourFilters.php file
    <?php
    $closure = function ($data) {
        foreach ($data as $title => &$values) {
            foreach ($values as $key => $val) {
                switch ($title) {
                    default:
                        if (empty($val['deprecated'])) {
                            unset($values[$key]);
                        }
                }
            }
        }
        return $data;
    };
    
    return $closure;
    

Bugs fixed :

  • none

Download :

Published by Laurent Laville on 2015-06-16