Skip to content

Commit

Permalink
refactor: w-vision > instride 🔄
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongerig committed Mar 7, 2024
1 parent 09cb023 commit e2303ad
Show file tree
Hide file tree
Showing 14 changed files with 62 additions and 63 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ payment integration.

## Installation

#### Via Composer
```bash
$ composer require w-vision/payum-payrexx:^1.0
$ composer require instride/payum-payrexx:^1.0
```
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "w-vision/payum-payrexx",
"name": "instride/payum-payrexx",
"type": "library",
"description": "A Payum extension to provide Payrexx payment integration.",
"keywords": [
Expand All @@ -10,10 +10,10 @@
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "w-vision AG",
"email": "support@w-vision.ch",
"homepage": "https://w-vision.ch",
"role": "Web Development Agency"
"name": "instride AG",
"email": "connect@instride.ch",
"homepage": "https://instride.ch",
"role": "Digital Agency"
}
],
"require": {
Expand All @@ -24,7 +24,7 @@
},
"autoload": {
"psr-4": {
"Wvision\\Payum\\Payrexx\\": "src/"
"Instride\\Payum\\Payrexx\\": "src/"
}
},
"extra": {
Expand Down
10 changes: 5 additions & 5 deletions src/Action/Api/CaptureOffsiteAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@
/**
* @author Miguel Gomes
*
* w-vision.
* instride AG
*
* LICENSE
*
* For the full copyright and license information, please view the LICENSE.md
* file that is distributed with this source code.
*
* @copyright Copyright (c) 2019 w-vision AG (https://www.w-vision.ch)
* @copyright 2024 instride AG (https://instride.ch)
*/

declare(strict_types=1);

namespace Wvision\Payum\Payrexx\Action\Api;
namespace Instride\Payum\Payrexx\Action\Api;

use Payum\Core\Action\ActionInterface;
use Payum\Core\ApiAwareInterface;
use Payum\Core\ApiAwareTrait;
use Payum\Core\Bridge\Spl\ArrayObject;
use Payum\Core\Exception\RequestNotSupportedException;
use Payum\Core\Reply\HttpRedirect;
use Wvision\Payum\Payrexx\Api;
use Wvision\Payum\Payrexx\Request\Api\CaptureOffsite;
use Instride\Payum\Payrexx\Api;
use Instride\Payum\Payrexx\Request\Api\CaptureOffsite;

class CaptureOffsiteAction implements ActionInterface, ApiAwareInterface
{
Expand Down
10 changes: 5 additions & 5 deletions src/Action/Api/CreateTransactionAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@
/**
* @author Miguel Gomes
*
* w-vision.
* instride AG
*
* LICENSE
*
* For the full copyright and license information, please view the LICENSE.md
* file that is distributed with this source code.
*
* @copyright Copyright (c) 2019 w-vision AG (https://www.w-vision.ch)
* @copyright 2024 instride AG (https://instride.ch)
*/


declare(strict_types=1);

namespace Wvision\Payum\Payrexx\Action\Api;
namespace Instride\Payum\Payrexx\Action\Api;

use Payrexx\Models\Request\Transaction;
use Payum\Core\Action\ActionInterface;
use Payum\Core\ApiAwareInterface;
use Payum\Core\ApiAwareTrait;
use Payum\Core\Bridge\Spl\ArrayObject;
use Payum\Core\Exception\RequestNotSupportedException;
use Wvision\Payum\Payrexx\Api;
use Wvision\Payum\Payrexx\Request\Api\CreateTransaction;
use Instride\Payum\Payrexx\Api;
use Instride\Payum\Payrexx\Request\Api\CreateTransaction;

class CreateTransactionAction implements ActionInterface, ApiAwareInterface
{
Expand Down
10 changes: 5 additions & 5 deletions src/Action/CaptureAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
/**
* @author Miguel Gomes
*
* w-vision.
* instride AG
*
* LICENSE
*
* For the full copyright and license information, please view the LICENSE.md
* file that is distributed with this source code.
*
* @copyright Copyright (c) 2019 w-vision AG (https://www.w-vision.ch)
* @copyright 2024 instride AG (https://instride.ch)
*/

declare(strict_types=1);

namespace Wvision\Payum\Payrexx\Action;
namespace Instride\Payum\Payrexx\Action;

use Payum\Core\Action\ActionInterface;
use Payum\Core\Bridge\Spl\ArrayObject;
Expand All @@ -24,8 +24,8 @@
use Payum\Core\GatewayAwareTrait;
use Payum\Core\Request\Capture;
use Payum\Core\Request\GetHttpRequest;
use Wvision\Payum\Payrexx\Request\Api\CaptureOffsite;
use Wvision\Payum\Payrexx\Request\Api\CreateTransaction;
use Instride\Payum\Payrexx\Request\Api\CaptureOffsite;
use Instride\Payum\Payrexx\Request\Api\CreateTransaction;

class CaptureAction implements ActionInterface, GatewayAwareInterface
{
Expand Down
6 changes: 3 additions & 3 deletions src/Action/ConvertPaymentAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
/**
* @author Miguel Gomes
*
* w-vision.
* instride AG
*
* LICENSE
*
* For the full copyright and license information, please view the LICENSE.md
* file that is distributed with this source code.
*
* @copyright Copyright (c) 2019 w-vision AG (https://www.w-vision.ch)
* @copyright 2024 instride AG (https://instride.ch)
*/

declare(strict_types=1);

namespace Wvision\Payum\Payrexx\Action;
namespace Instride\Payum\Payrexx\Action;

use Payum\Core\Action\ActionInterface;
use Payum\Core\Bridge\Spl\ArrayObject;
Expand Down
8 changes: 4 additions & 4 deletions src/Action/NotifyAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@
/**
* @author Miguel Gomes
*
* w-vision.
* instride AG
*
* LICENSE
*
* For the full copyright and license information, please view the LICENSE.md
* file that is distributed with this source code.
*
* @copyright Copyright (c) 2019 w-vision AG (https://www.w-vision.ch)
* @copyright 2024 instride AG (https://instride.ch)
*/

declare(strict_types=1);

namespace Wvision\Payum\Payrexx\Action;
namespace Instride\Payum\Payrexx\Action;

use Payum\Core\Action\ActionInterface;
use Payum\Core\Exception\RequestNotSupportedException;
use Payum\Core\GatewayAwareInterface;
use Payum\Core\GatewayAwareTrait;
use Payum\Core\Request\Notify;
use Wvision\Payum\Payrexx\Request\GetHumanStatus;
use Instride\Payum\Payrexx\Request\GetHumanStatus;

class NotifyAction implements ActionInterface, GatewayAwareInterface
{
Expand Down
8 changes: 4 additions & 4 deletions src/Action/NotifyNullAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@
/**
* @author Miguel Gomes
*
* w-vision.
* instride AG
*
* LICENSE
*
* For the full copyright and license information, please view the LICENSE.md
* file that is distributed with this source code.
*
* @copyright Copyright (c) 2019 w-vision AG (https://www.w-vision.ch)
* @copyright 2024 instride AG (https://instride.ch)
*/

declare(strict_types=1);

namespace Wvision\Payum\Payrexx\Action;
namespace Instride\Payum\Payrexx\Action;

use Payrexx\Models\Request\Transaction;
use Payum\Core\Request\Notify;
use Wvision\Payum\Payrexx\Api;
use Instride\Payum\Payrexx\Api;
use Payum\Core\Action\ActionInterface;
use Payum\Core\ApiAwareInterface;
use Payum\Core\ApiAwareTrait;
Expand Down
10 changes: 5 additions & 5 deletions src/Action/StatusAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@
/**
* @author Miguel Gomes
*
* w-vision.
* instride AG
*
* LICENSE
*
* For the full copyright and license information, please view the LICENSE.md
* file that is distributed with this source code.
*
* @copyright Copyright (c) 2019 w-vision AG (https://www.w-vision.ch)
* @copyright 2024 instride AG (https://instride.ch)
*/

declare(strict_types=1);

namespace Wvision\Payum\Payrexx\Action;
namespace Instride\Payum\Payrexx\Action;

use Payrexx\Models\Request\Transaction;
use Payum\Core\Action\ActionInterface;
use Payum\Core\ApiAwareInterface;
use Payum\Core\ApiAwareTrait;
use Payum\Core\Exception\RequestNotSupportedException;
use Payum\Core\Request\GetStatusInterface;
use Wvision\Payum\Payrexx\Api;
use Wvision\Payum\Payrexx\Request\GetHumanStatus;
use Instride\Payum\Payrexx\Api;
use Instride\Payum\Payrexx\Request\GetHumanStatus;

class StatusAction implements ActionInterface, ApiAwareInterface
{
Expand Down
10 changes: 5 additions & 5 deletions src/Api.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
/**
* @author Miguel Gomes
*
* w-vision.
* instride AG
*
* LICENSE
*
* For the full copyright and license information, please view the LICENSE.md
* file that is distributed with this source code.
*
* @copyright Copyright (c) 2019 w-vision AG (https://www.w-vision.ch)
* @copyright 2024 instride AG (https://instride.ch)
*/
namespace Wvision\Payum\Payrexx;
namespace Instride\Payum\Payrexx;

use Payrexx\Payrexx;
use Wvision\Payum\Payrexx\Request\Api\CreateTransaction;
use Wvision\Payum\Payrexx\Request\GetHumanStatus;
use Instride\Payum\Payrexx\Request\Api\CreateTransaction;
use Instride\Payum\Payrexx\Request\GetHumanStatus;

class Api
{
Expand Down
20 changes: 10 additions & 10 deletions src/PayumPayrexxGatewayFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,30 @@
/**
* @author Miguel Gomes
*
* w-vision.
* instride AG
*
* LICENSE
*
* For the full copyright and license information, please view the LICENSE.md
* file that is distributed with this source code.
*
* @copyright Copyright (c) 2019 w-vision AG (https://www.w-vision.ch)
* @copyright 2024 instride AG (https://instride.ch)
*/

declare(strict_types=1);

namespace Wvision\Payum\Payrexx;
namespace Instride\Payum\Payrexx;

use Payrexx\Payrexx;
use Payum\Core\Bridge\Spl\ArrayObject;
use Payum\Core\GatewayFactory;
use Wvision\Payum\Payrexx\Action\Api\CaptureOffsiteAction;
use Wvision\Payum\Payrexx\Action\Api\CreateTransactionAction;
use Wvision\Payum\Payrexx\Action\CaptureAction;
use Wvision\Payum\Payrexx\Action\ConvertPaymentAction;
use Wvision\Payum\Payrexx\Action\NotifyAction;
use Wvision\Payum\Payrexx\Action\NotifyNullAction;
use Wvision\Payum\Payrexx\Action\StatusAction;
use Instride\Payum\Payrexx\Action\Api\CaptureOffsiteAction;
use Instride\Payum\Payrexx\Action\Api\CreateTransactionAction;
use Instride\Payum\Payrexx\Action\CaptureAction;
use Instride\Payum\Payrexx\Action\ConvertPaymentAction;
use Instride\Payum\Payrexx\Action\NotifyAction;
use Instride\Payum\Payrexx\Action\NotifyNullAction;
use Instride\Payum\Payrexx\Action\StatusAction;

class PayumPayrexxGatewayFactory extends GatewayFactory
{
Expand Down
6 changes: 3 additions & 3 deletions src/Request/Api/CaptureOffsite.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
/**
* @author Miguel Gomes
*
* w-vision.
* instride AG
*
* LICENSE
*
* For the full copyright and license information, please view the LICENSE.md
* file that is distributed with this source code.
*
* @copyright Copyright (c) 2019 w-vision AG (https://www.w-vision.ch)
* @copyright 2024 instride AG (https://instride.ch)
*/

declare(strict_types=1);

namespace Wvision\Payum\Payrexx\Request\Api;
namespace Instride\Payum\Payrexx\Request\Api;

use Payum\Core\Request\Generic;

Expand Down
6 changes: 3 additions & 3 deletions src/Request/Api/CreateTransaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
/**
* @author Miguel Gomes
*
* w-vision.
* instride AG
*
* LICENSE
*
* For the full copyright and license information, please view the LICENSE.md
* file that is distributed with this source code.
*
* @copyright Copyright (c) 2019 w-vision AG (https://www.w-vision.ch)
* @copyright 2024 instride AG (https://instride.ch)
*/


declare(strict_types=1);

namespace Wvision\Payum\Payrexx\Request\Api;
namespace Instride\Payum\Payrexx\Request\Api;

use Payum\Core\Request\Generic;

Expand Down
6 changes: 3 additions & 3 deletions src/Request/GetHumanStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
/**
* @author Miguel Gomes
*
* w-vision.
* instride AG
*
* LICENSE
*
* For the full copyright and license information, please view the LICENSE.md
* file that is distributed with this source code.
*
* @copyright Copyright (c) 2019 w-vision AG (https://www.w-vision.ch)
* @copyright 2024 instride AG (https://instride.ch)
*/

declare(strict_types=1);

namespace Wvision\Payum\Payrexx\Request;
namespace Instride\Payum\Payrexx\Request;

use Payum\Core\Request\GetHumanStatus as BaseGetHumanStatus;

Expand Down

0 comments on commit e2303ad

Please sign in to comment.