GithubHelp home page GithubHelp logo

w3guy / omnipay-2checkout Goto Github PK

View Code? Open in Web Editor NEW
28.0 4.0 27.0 68 KB

2Checkout driver for the Omnipay PHP payment processing library

License: MIT License

PHP 100.00%
omnipay 2checkout payment payment-gateway payment-integration

omnipay-2checkout's Introduction

Omnipay: 2checkout

2checkout gateway for the Omnipay PHP payment processing library

Latest Version on Packagist Software License Build Status Coverage Status Code Climate Dependency Status Total Downloads

Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+. This package implements 2checkout support for Omnipay.

Install

Via Composer

$ composer require collizo4sky/omnipay-2checkout

Usage

The following gateways are provided by this package:

  • TwoCheckoutPlus
  • TwoCheckoutPlus_Token

TwoCheckoutPlus

use Omnipay\Omnipay;

$gateway = Omnipay::create('TwoCheckoutPlus');
$gateway->setAccountNumber($this->account_number);
$gateway->setSecretWord($this->secret_word);
$gateway->setTestMode($this->is_sandbox_test());
// activate test mode by passing demo parameter to checkout parameters.
$gateway->setDemoMode($this->is_test_mode());


try {
    $formData = array(
        'firstName' => $order->get_billing_first_name(),
        'lastName' => $order->get_billing_last_name(),
        'email' => $order->get_billing_email(),
        'address1' => $order->get_billing_address_1(),
        'address2' => $order->get_billing_address_2(),
        'city' => $order->get_billing_city(),
        'state' => $order->get_billing_state(),
        'postcode' => $order->get_billing_postcode(),
        'country' => $order->get_billing_country(),
    );

    $order_cart = $order->get_items();

    $cart = array();

    $i = 0;
    foreach ($order_cart as $order_item_id => $product) {
        $product_id = $product['product_id'];
        $cart[$i]['name'] = $product['name'];
        $cart[$i]['quantity'] = $product['qty'];
        $cart[$i]['type'] = 'product';
        $cart[$i]['price'] = round($product['line_subtotal'] / $product['qty'], 2);
        $cart[$i]['product_id'] = $product_id;

        $i++;
    }

    if (($shipping_total = $order->get_shipping_total()) > 0) {
        $cart[] = array(
            'name' => 'Shipping Fee',
            'quantity' => 1,
            'type' => 'shipping',
            'price' => round($shipping_total, 2),
        );
    }

    if (($discount_total = $order->get_total_discount()) > 0) {
        $cart[] = array(
            'name' => 'Discount',
            'quantity' => 1,
            'type' => 'coupon',
            'price' => round($discount_total, 2),
        );
    }

    if (($tax_total = $order->get_total_tax()) > 0) {
        $cart[] = array(
            'name' => 'Tax Fee',
            'type' => 'tax',
            'quantity' => 1,
            'price' => round($tax_total, 2),
        );
    }

    $gateway->setCart($cart);

    $response = $gateway->purchase(
        array(
            'card' => $formData,
            'transactionId' => $order->get_order_number(),
            'currency' => 'USD',
            // add a query parameter to the returnUrl to listen and complete payment
            'returnUrl' => $this->returnUrl,
        )
    )->send();


    if ($response->isRedirect()) {
        $response->getRedirectUrl();

    } else {
        $error = $response->getMessage();
    }
} catch (Exception $e) {
    $e->getMessage();
}

TwoCheckoutPlus_Token

use Omnipay\Omnipay;

try {
    $gateway = Omnipay::create('TwoCheckoutPlus_Token');
    $gateway->setAccountNumber($this->account_number);
    $gateway->setTestMode($this->is_sandbox_test());
    $gateway->setPrivateKey($this->private_key);

    $formData = array(
        'firstName' => $order->get_billing_first_name(),
        'lastName' => $order->get_billing_last_name(),
        'email' => $order->get_billing_email(),
        'billingAddress1' => $order->get_billing_address_1(),
        'billingAddress2' => $order->get_billing_address_2(),
        'billingCity' => $order->get_billing_city(),
        'billingPostcode' => $order->get_billing_postcode(),
        'billingState' => $order->get_billing_state(),
        'billingCountry' => $order->get_billing_country(),
    );


    $purchase_request_data = array(
        'card' => $formData,
        'token' => sanitize_text_field($_POST['twocheckout_token']),
        'transactionId' => $order->get_order_number(),
        'currency' => 'USD',
        'amount' => $order->order_total,
    );

    $response = $gateway->purchase($purchase_request_data)->send();

    if ($response->isSuccessful()) {
        $transaction_ref = $response->getTransactionReference();
    } else {
        $error = $response->getMessage();
    }
} catch (Exception $e) {
    $e->getMessage();
}

For general usage instructions, please see the main Omnipay repository.

Support

If you are having general issues with Omnipay, we suggest posting on Stack Overflow. Be sure to add the omnipay tag so it can be easily found.

If you want to keep up to date with release anouncements, discuss ideas for the project, or ask more detailed questions, there is also a mailing list which you can subscribe to.

If you believe you have found a bug, please report it using the GitHub issue tracker, or better yet, fork the library and submit a pull request.

Testing

$ composer test

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

omnipay-2checkout's People

Contributors

joomdonation avatar m1r0 avatar mark-h avatar w3guy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

omnipay-2checkout's Issues

Fatal error: Call to undefined method Omnipay\TwoCheckoutPlus\TokenGateway::setApiKey()

I'm hoping to use the token method of purchase.

I used composer to install this, and it created this path:

omnipay\vendor\collizo4sky\omnipay-2checkout

note also that I have this path:

omnipay\vendor\omnipay

...containing "common" and "stripe" folders

I have Stripe working from its own separate cart folder on my project just fine. With that, I merely did:

use Omnipay\Omnipay;
$oGateway = Omnipay::create('Stripe');
$oGateway->setApiKey($config->STRIPE_SECRET_KEY);

But for my 2Checkout cart folder in my project, I tried to run it like so:

use Omnipay\Omnipay;
$oGateway = Omnipay::create('TwoCheckoutPlus_Token');
$oGateway->setApiKey($config->TWOCHECKOUT_SECRET_KEY);

...but it's crashing with the fatal error that it can't find the API path. The error is:

Fatal error: Call to undefined method Omnipay\TwoCheckoutPlus\TokenGateway::setApiKey()

Using deprecated library [guzzle/guzzle]

guzzle/guzzle has been deprecated since 2015-03-18 and is recommended to use guzzlehttp/guzzle.
Guzzle is now at version 6 while this is version 3. This makes it highly incompatible with various packages.

Why did you add set/get Cart method? I see in abstract request exists already setItems.

I think will be fine to use set/get Items to keep abstraction. For example in my case i have a general controller which use 2 different payment gateways.

  1. 2Checkout - for setup products i have to use setCart()
  2. MultiSafepay - for setup products i have to use setItems()

and in controller appear hardcoding like this if( method_exists($gateway, 'setCart') ) else( method_exists($gateway, 'setItems') )

Thank you.

Support for Api

There is this documentation for api payment in 2checkout but this seems to be missing in this repo. I cannot seem to create token using this repo, that I can later charge the card with, It either supports the one where I have get redirected to the 2 checkout's site itself or I have to have a token with me before I start transaction.

can you add this support or am I missing something?

Support for refund

It's seem from 2 checkout api that it does support refund

https://www.2checkout.com/documentation/api/sales/refund-invoice

Is there a reason it's not integrated in the gateway ?

If there is no reason why not I will probably do it where I work and submit a pull request.

From what I see there is no integration test ? So for unit test I just validate the input/outpu without really calling the 2checkout api ?

Not compatible with symfony/event-dispatcher v3.3.10

Problem 1
- Conclusion: remove symfony/event-dispatcher v3.3.10
- Conclusion: don't install symfony/event-dispatcher v3.3.10
- omnipay/common 2.4.0 requires guzzle/guzzle ~3.9 -> satisfiable by guzzle/guzzle[v3.9.0, v3.9.1, v3.9.2, v3.9.3].
- omnipay/common 2.5.2 requires guzzle/guzzle ~3.9 -> satisfiable by guzzle/guzzle[v3.9.0, v3.9.1, v3.9.2, v3.9.3].
- omnipay/common v2.3.4 requires guzzle/guzzle ~3.9 -> satisfiable by guzzle/guzzle[v3.9.0, v3.9.1, v3.9.2, v3.9.3].
- omnipay/common v2.4.1 requires guzzle/guzzle ~3.9 -> satisfiable by guzzle/guzzle[v3.9.0, v3.9.1, v3.9.2, v3.9.3].
- omnipay/common v2.5.0 requires guzzle/guzzle ~3.9 -> satisfiable by guzzle/guzzle[v3.9.0, v3.9.1, v3.9.2, v3.9.3].
- omnipay/common v2.5.1 requires guzzle/guzzle ~3.9 -> satisfiable by guzzle/guzzle[v3.9.0, v3.9.1, v3.9.2, v3.9.3].
- guzzle/guzzle v3.9.0 requires symfony/event-dispatcher ~2.1 -> satisfiable by symfony/event-dispatcher[v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.5, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9].
- guzzle/guzzle v3.9.1 requires symfony/event-dispatcher ~2.1 -> satisfiable by symfony/event-dispatcher[v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.5, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9].
- guzzle/guzzle v3.9.2 requires symfony/event-dispatcher ~2.1 -> satisfiable by symfony/event-dispatcher[v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.5, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9].
- guzzle/guzzle v3.9.3 requires symfony/event-dispatcher ~2.1 -> satisfiable by symfony/event-dispatcher[v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.5, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9].
- Can only install one of: symfony/event-dispatcher[v2.8.0, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.1, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.10, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.11, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.12, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.13, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.14, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.15, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.16, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.17, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.18, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.19, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.2, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.20, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.21, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.22, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.23, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.24, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.25, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.26, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.27, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.28, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.29, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.3, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.30, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.31, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.32, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.4, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.5, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.6, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.7, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.8, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.8.9, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.0, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.1, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.10, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.11, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.12, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.13, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.2, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.3, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.4, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.5, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.6, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.7, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.8, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.1.9, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.2.0, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.2.1, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.2.10, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.2.11, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.2.2, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.2.3, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.2.4, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.2.5, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.2.6, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.2.7, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.2.8, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.2.9, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.0, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.1, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.10, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.11, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.12, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.13, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.14, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.15, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.16, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.17, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.18, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.19, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.2, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.20, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.21, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.22, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.23, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.24, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.25, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.26, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.27, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.28, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.29, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.3, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.30, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.31, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.32, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.33, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.34, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.35, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.36, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.37, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.38, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.39, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.4, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.40, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.41, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.42, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.5, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.6, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.7, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.8, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.3.9, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.4.0, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.4.1, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.4.10, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.4.2, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.4.3, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.4.4, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.4.5, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.4.6, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.4.7, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.4.8, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.4.9, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.0, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.1, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.10, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.11, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.12, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.2, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.3, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.4, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.5, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.6, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.7, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.8, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.5.9, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.0, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.1, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.10, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.11, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.12, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.13, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.2, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.3, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.4, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.5, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.6, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.7, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.8, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.6.9, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.0, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.1, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.10, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.11, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.12, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.13, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.14, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.15, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.16, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.17, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.18, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.19, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.2, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.20, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.21, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.22, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.23, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.24, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.25, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.26, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.27, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.28, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.29, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.3, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.30, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.31, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.32, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.33, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.34, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.35, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.36, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.37, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.38, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.39, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.4, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.5, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.6, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.7, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.8, v3.3.10].
- Can only install one of: symfony/event-dispatcher[v2.7.9, v3.3.10].
- Installation request for symfony/event-dispatcher (locked at v3.3.10) -> satisfiable by symfony/event-dispatcher[v3.3.10].
- Installation request for collizo4sky/omnipay-2checkout ^1.6 -> satisfiable by collizo4sky/omnipay-2checkout[1.6].
- Conclusion: don't install symfony/http-foundation v3.3.10|install omnipay/common 2.4.0|install omnipay/common 2.5.2|install omnipay/common v2.3.4|install omnipay/common v2.4.1|install omnipay/common v2.5.0|install omnipay/common v2.5.1
- Conclusion: remove symfony/http-foundation v3.3.10|install omnipay/common 2.4.0|install omnipay/common 2.5.2|install omnipay/common v2.3.4|install omnipay/common v2.4.1|install omnipay/common v2.5.0|install omnipay/common v2.5.1
- collizo4sky/omnipay-2checkout 1.6 requires omnipay/common ~2.0 -> satisfiable by omnipay/common[2.3.2, 2.4.0, 2.5.2, v2.0.0, v2.1.0, v2.2.0, v2.3.0, v2.3.1, v2.3.3, v2.3.4, v2.4.1, v2.5.0, v2.5.1].
- omnipay/common 2.3.2 requires symfony/http-foundation ~2.1 -> satisfiable by symfony/http-foundation[v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.5, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9].
- omnipay/common v2.0.0 requires symfony/http-foundation ~2.1 -> satisfiable by symfony/http-foundation[v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.5, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9].
- omnipay/common v2.1.0 requires symfony/http-foundation ~2.1 -> satisfiable by symfony/http-foundation[v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.5, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9].
- omnipay/common v2.2.0 requires symfony/http-foundation ~2.1 -> satisfiable by symfony/http-foundation[v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.5, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9].
- omnipay/common v2.3.0 requires symfony/http-foundation ~2.1 -> satisfiable by symfony/http-foundation[v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.5, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9].
- omnipay/common v2.3.1 requires symfony/http-foundation ~2.1 -> satisfiable by symfony/http-foundation[v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.5, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9].
- omnipay/common v2.3.3 requires symfony/http-foundation ~2.1 -> satisfiable by symfony/http-foundation[v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9, v2.2.0, v2.2.1, v2.2.10, v2.2.11, v2.2.2, v2.2.3, v2.2.4, v2.2.5, v2.2.6, v2.2.7, v2.2.8, v2.2.9, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.5, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9].
- Can only install one of: symfony/http-foundation[v2.1.0, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.1, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.10, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.11, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.12, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.13, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.2, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.3, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.4, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.5, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.6, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.7, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.8, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.1.9, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.2.0, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.2.1, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.2.10, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.2.11, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.2.2, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.2.3, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.2.4, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.2.5, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.2.6, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.2.7, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.2.8, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.2.9, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.0, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.1, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.10, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.11, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.12, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.13, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.14, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.15, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.16, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.17, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.18, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.19, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.2, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.20, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.21, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.22, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.23, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.24, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.25, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.26, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.27, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.28, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.29, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.3, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.30, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.31, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.32, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.33, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.34, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.35, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.36, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.37, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.38, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.39, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.4, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.40, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.41, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.42, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.5, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.6, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.7, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.8, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.3.9, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.4.0, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.4.1, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.4.10, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.4.2, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.4.3, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.4.4, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.4.5, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.4.6, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.4.7, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.4.8, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.4.9, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.0, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.1, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.10, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.11, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.12, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.2, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.3, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.4, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.5, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.6, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.7, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.8, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.5.9, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.0, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.1, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.10, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.11, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.12, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.13, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.2, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.3, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.4, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.5, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.6, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.7, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.8, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.6.9, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.0, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.1, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.10, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.11, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.12, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.13, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.14, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.15, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.16, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.17, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.18, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.19, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.2, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.20, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.21, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.22, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.23, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.24, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.25, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.26, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.27, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.28, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.29, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.3, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.30, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.31, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.32, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.33, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.34, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.35, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.36, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.37, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.38, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.39, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.4, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.5, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.6, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.7, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.8, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.7.9, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.0, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.1, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.10, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.11, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.12, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.13, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.14, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.15, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.16, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.17, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.18, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.19, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.2, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.20, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.21, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.22, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.23, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.24, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.25, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.26, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.27, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.28, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.29, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.3, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.30, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.31, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.32, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.4, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.5, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.6, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.7, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.8, v3.3.10].
- Can only install one of: symfony/http-foundation[v2.8.9, v3.3.10].
- Installation request for symfony/http-foundation (locked at v3.3.10) -> satisfiable by symfony/http-foundation[v3.3.10].

Can not set returnUrl

Hi mr,
I can not set the returnUrl when use 'TwoCheckoutPlus'. It says 'Fatal error: Call to undefined method Omnipay\TwoCheckoutPlus\Gateway::setReturnUrl()'.

Thank you,
Hai Nguyen

Notice if ($this->data['sandbox']) { ..

I always on dev working with error_reporting = -1 display_errors = 1 which mean show all errors / warnings etc..

If i do : $gateway = OmniPay::create('TwoCheckoutPlus')->setTestMode(false);

i got : Notice: Undefined index: sandbox in /vagrant/../vendor/collizo4sky/omnipay-2checkout/src/Message/PurchaseResponse.php on line 23

Thank you.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.