我想包括phpleague的OAuth客户端( https://github.com/thephpleague/oauth2-client在我的symfony(1.4)项目),但它使用的命名空间无处不在,让我枕着一个解决方法,并使用Symfony2的通用上来自动加载磁带机,用这段代码在我projectConfiguration.class.php在一起
public function namespacesClassLoader()
{
$loader = new UniversalClassLoader();
$loader->registerNamespaces(array(
'League' => __DIR__ . '/../lib/League',
));
$loader->register();
}
该函数被调用的设置()内。 当我尝试实例化这样的提供商,此项不工作
$provider = new League\OAuth2\Client\Provider\Google(array(
'clientId' => '',
'clientSecret' => '',
'redirectUri' => $redirect_url
));
有任何想法吗 ?