Using php-github-webhook to automatically pull commits from github

Overview php-github-webhook is a very simple class that allows pulling git commits from GitHub when they are pushed to it. This can be very useful when building continuous integration process or when you want to have some server with all latest commits pushed to GitHub. How it works GitHub provides a mechanism called Webhooks that allows calling some URL when certain event is triggered on your repository. Webhook is defined by URL that is called when event is triggered and a shared secret. [Read More]
git  github 

MongoObject – library that simplifies storing PHP objects in Mongo

MongoObject Overview Today I released MongoObject package. It is a library that simplifies storing and fetching of object to/from Mongo database. It is available on github: https://github.com/dintel/mongo-object And it is also available on packagist: https://packagist.org/packages/dintel/mongo-object Installation Using composer: $ composer require dintel/mongo-object Features Most important features of MongoObject: Provides base Object class that you can derive and easily save into Mongo database Objects have schema, but underlying data in Mongo can diverge from it Provides Mapper class that allows loading objects from Mongo database Provides MapperFactory class that can be used as a service factory in Zend Framework 2 Object class Object is a base class that should be used for all classes that should have an ability to be easily saved into Mongo database. [Read More]