Repositories management

How to manage the source code of a project under version control in a robust and smarter way? Here is a review of the brilliant article by Vincent Driessen on the issue: the workflow of a source code managed by GIT, handling releases, bug-fix and new features …


My coding standards

Useful links the PHP manual the PHPUnit manual the Composer and Packagist websites the X-Debug documentation Coding styles Base standards I MUST try to follow the coding standards and naming rules most commonly in use: the PEAR coding standards the PHP Framework Interoperability Group standards. My coding rules script files MUST all be encoded with LF line ending (UNIX “linefeed”) in classic UTF-8 character set with NO BOM ; lines in a script MUST never …


Markdown Extended

PHP Markdown Extended is a PHP package to transform Markdown text files or strings in HTML. This new version of a Markdown parser tries to propose a complete set of Markdown syntax tags and rules and to be PHP-5.3+ compliant.