我以前使用过 ci-merchant,但从一切来看,它的“V2”现在是omnipay。我使用codeigniter,我正在努力让这个例子工作。
我已经安装了omnipay没有问题,并且在我的控制器中有以下内容:
use Omnipay\Common\GatewayFactory;
class Homepage extends BC_basecontroller {
public function index()
{
$gateway = GatewayFactory::create('PayPal_Express');
$gateway->setUsername('adrian');
$gateway->setPassword('12345');
}
}
这是这里的例子:https ://github.com/adrianmacneil/omnipay
但是我得到了错误:
PHP Fatal error: Class 'Omnipay\Common\GatewayFactory' not found in......
有谁知道如何让它在 CI 中工作?