Going to close this issue. The problem was that the v1.1 oAuth is much stricter and you have separate the URL and the request string.
So this won’t work
$creds = $twtObj->get(’/search/tweets.json?q=sony’);
But this will
$creds = $twtObj->get(’/search/tweets.json’, array(‘q’ => ‘sony’));