The authors of PHPUnit announced the end of support for PEAR - The once popular repository of extensions and packages for PHP PEAR is confidently moving towards the end of its existence. The pear.phpunit.de channel has existed since 2006, but will be closed no later than December 31 of this year, and releases PHPUnit 3.7.35 and PHPUnit 4.0.17 will be the last available through this installation method. In addition, Fabien confirmed that PEAR symfony packages will also cease to be published soon.
Yii 2.0 beta - A detailed review of the beta version of the long-awaited framework Yii 2.0. See also a selection of topics. which should be studied when switching to Yii 2.
WordPress 3.9 “Smith” - The release contains mostly cosmetic changes and improvements.
RFC: Return Type Declarations - The type-hinting implementation proposal for return values has already been mentioned in the digest, an implementation has been added, so there is every chance to see it in action soon.
Instruments
Monolog - The most popular PHP-library for logging.
Open source tools from the company Box - Well-known data storage service Box laid out in a shared access a number of its internal tools, including PHP-solutions.
Gaufrette - A library that provides an abstract layer for working with the file system. Allows you to transparently interact with both local storage and remote storage. A similar solution was previously mentioned - the Flysystem library.
Obfuscalp - The tool allows you to find and delete suspicious / malicious code in PHP scripts.
saber / http - Library for convenient work with HTTP requests and responses.
Running Composer with HHVM - not so fast! - As it turned out, HHVM exceeds PHP in speed when executing composer update, but for composer install the situation is opposite.
Tuples in PHP - In PHP, unlike, for example, Python does not have a built-in tuple data type, the post demonstrates the idea of implementing SPLFixedArray based tuples.
Store a PHP session or cache in memory using TMPFS - The author shows how you can organize the storage of session files in memory without using third-party solutions like memcached or Redis. To do this, it is proposed to use the virtual file system TMPFS . The obvious advantage of this solution is the speed of implementation, since no change in the application is required.
Memberships with Laravel Cashier - This tutorial discusses the use of the Laravel Cashier package using the example of creating a site with a paid access.