Posts tagged with "quicktip"
Dynamic Developer Environments with Nginx
Did you ever want multiple developer environments without ever changing URLs? Nginx can help you. Unlike Apache, Nginx can be configuered very dynamically. You can use map
to map cookie values to document roots.
Mocking Artax with PHPUnit
Artax is an asynchronous HTTP/1.1 client built on the Amp concurrency framework. Mocking can be great to help testing, especially for testing error cases which can be hard to receive otherwise with real requests / responses.