Php

NacexBundle, a PHP bundle

Today I am releasing one of the php bundles we made for Selltag, the NacexBundle. NacexBundle is a bundle implementing a client/service to call the Nacex SOAP API, the transport company Nacex API. We use it with Symfony, but you could use It as you please. :-) You can read the instructions for …

ExtendedArray for PHP

Today I released an ExtendedArray for PHP, you can check It out in Github. An example: use TA\ExtendedArray\Type\ExtendedArray; $fruits = new ExtendedArray( array( 'tropical' => 'pineapple', 'farm' => 'strawberry' ) ); $fruits->has('tropical'); // true $fruits->hasOne(array('tropical', 'asian')); // …

Auth with Behat token workaround

Behat is a very nice behaviour-driven framework well suited for Symfony. A workaround is always some hack you need to solve a problem not in an optimal way, but in my case I found it good enough to solve my problem in a timely fashion. This is about user authentication for Behat and how you could do …