以前に ci-merchant を使用したことがありますが、その「V2」がオムニペイになっていることがわかります。私は codeigniter を使用していますが、例を機能させるのに苦労しています。
オムニペイを問題なくインストールしました。コントローラーには次のものがあります。
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で動作させる方法を知っている人はいますか?