PHP releases: 5.4.37 , 5.5.21 and 5.6.5 - Fixed security issues, including with the unserialize function, and fixed other bugs. Full list of changes here . All users are encouraged to upgrade.
RFC: Return Type Declarations - Voting on this proposal was previously canceled due to a bug , but now the voting has successfully ended with a score of 47 for and 3 against. So in PHP 7 we are waiting for the possibility of declaring return types: function foo(): array { return []; }function foo(): array { return []; } .
RFC: Combined Comparison (Spaceship) Operator - It is proposed to add a new operator (expr) <=> (expr) , which returns 0 if the operands are equal, 1 if the left operand is greater and -1 if more than the right.
RFC: Default constructors - The proposal to implement default constructors did not pass the 2/3 vote threshold and was rejected.
PHP 7 Homework from Rasmus Lerdorf - In order to help detect errors and stabilize the code faster, Rasmus suggests installing PHP 7 and running any PHP application on it.
Instruments
Flysystem - A library that abstracts work with files, which makes it easy to use both the local file system and the remote one without changing the application code. In addition to the local supported impressive list: AWS S3, Dropbox, Copy.com, Rackspace, FTP, SFTP, GridFS and others.
UtilPHP - A collection of useful functions and snippets for a PHP developer for every day.
PdfParser - Library for obtaining meta-information from PDF-documents.
Robo - A simple modern PHP task launcher updated and acquired a new website.
Resolving a class name in PHP 5.4 — Beginning with PHP 5.5, the class name can be obtained by referring to ::class ; however, in earlier versions, you can implement a similar trick.
Please do not break our language - Not everyone is happy with the changes in PHP 7. So, the author of the post asks not to remove from the language that has worked well for years.