I’ve started creating a collection of handy PHP traits. The project is called PHP Traits Collection and you can find the code on GitHub.
Traits are a new feature of PHP 5.4 (released in 2012), which allow horizontal reuse of code in class. This is similar to multiple inheritance (eg as in Java) but more similar in implementation to mixins in Ruby.