Factory Muffin - library for creating and populating objects (with Faker) on-the-fly in tests. Also could be used with ORM to poluplate DB objects.
PHPVerbalExpressions - the easiest way to start with Regular Expressions. Write it in OOP way
$regex=new VerbalExpressions;
$regex ->startOfLine()
->then("http")
->maybe("s")
->then("://")
->maybe("www.")
->anythingBut(" ")
->endOfLine();
$regex->test("http://d.com")
A lot of implementations on other languages exist
Factory Muffin - library for creating and populating objects (with Faker) on-the-fly in tests. Also could be used with ORM to poluplate DB objects.
Made for Elementary - hand-curated apps designed and developed for Elementary OS.
JMESPath - JSON Matching Expression paths. JMESPath allows you to declaratively specify how to extract elements from a JSON document. Has PHP implementation.
Mr.Clean - extendible PHP data cleaner.
Dimensions - Google Chrome extension for coders to measure screen elements dimensions on-the-fly.