RFC: Deprecations for PHP 7.1 - The document contains a list of features that are proposed to be made obsolete in PHP 7.1 and completely removed no later than PHP 8. The list will be updated.
RFC: Callable Constructors - It is proposed to make it possible to call a constructor in callable structures. For example:
$fn = "Foo::__construct"; $object = $fn();
will be tantamount to
$object = new Foo();
Instruments
bouiboui / tissue - The library allows you to create an Issue on Github directly from code exceptions.
PHPDocker.io - Analogue of puphpet.com , allows you to generate a config for raising the environment based on Docker.