forked from yarcode/yii2-free-kassa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
52 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# phpstorm project files | ||
.idea | ||
|
||
# netbeans project files | ||
nbproject | ||
|
||
# zend studio for eclipse project files | ||
.buildpath | ||
.project | ||
.settings | ||
|
||
# windows thumbnail cache | ||
Thumbs.db | ||
|
||
#composer files | ||
composer.lock | ||
vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<a name="0.12.0"></a> | ||
# [0.12.0](https://github.com/yarcode/yii2-free-kassa/compare/0.11.0...0.12.0) (2017-02-04) | ||
# [0.12.0](https://github.com/sdelfi/yii2-free-kassa/compare/0.11.0...0.12.0) (2017-02-04) | ||
|
||
### Features | ||
|
||
* added CHANGELOG.md | ||
|
||
<a name="0.11.0"></a> | ||
# [0.11.0](https://github.com/yarcode/yii2-free-kassa/compare/0.10.0...0.11.0) (2017-02-04) | ||
# [0.11.0](https://github.com/sdelfi/yii2-free-kassa/compare/0.10.0...0.11.0) (2017-02-04) | ||
|
||
### Bug Fixes | ||
|
||
* yarcode\freekassa\events\GatewayEvent namespace fix | ||
* sdelfi\freekassa\events\GatewayEvent namespace fix | ||
* fixed sign checking |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "yarcode/yii2-free-kassa", | ||
"name": "sdelfi/yii2-free-kassa", | ||
"description": "FreeKassa component for Yii2", | ||
"type": "yii2-extension", | ||
"license": "MIT", | ||
|
@@ -13,6 +13,12 @@ | |
], | ||
"homepage": "http://yiidreamteam.com/yii2/free-kassa", | ||
"authors": [ | ||
{ | ||
"name": "Stanislav Salnikov", | ||
"email": "[email protected]", | ||
"homepage": "https://ittricks.ru", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Valentin Konusov", | ||
"email": "[email protected]", | ||
|
@@ -21,8 +27,8 @@ | |
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/yarcode/yii2-free-kassa/issues", | ||
"source": "https://github.com/yarcode/yii2-free-kassa" | ||
"issues": "https://github.com/sdelfi/yii2-free-kassa/issues", | ||
"source": "https://github.com/sdelfi/yii2-free-kassa" | ||
}, | ||
"minimum-stability": "stable", | ||
"require": { | ||
|
@@ -32,7 +38,7 @@ | |
}, | ||
"autoload": { | ||
"psr-4": { | ||
"yarcode\\freekassa\\": "./src" | ||
"sdelfi\\freekassa\\": "./src" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* @author Valentin Konusov <[email protected]> | ||
*/ | ||
|
||
namespace yarcode\freekassa; | ||
namespace sdelfi\freekassa; | ||
|
||
use GuzzleHttp\Client; | ||
use yii\base\Component; | ||
|
@@ -12,7 +12,7 @@ | |
|
||
/** | ||
* Class Api | ||
* @package yarcode\freekassa | ||
* @package sdelfi\freekassa | ||
*/ | ||
class Api extends Component | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* @author Valentin Konusov <[email protected]> | ||
*/ | ||
|
||
namespace yarcode\freekassa; | ||
namespace sdelfi\freekassa; | ||
|
||
use GuzzleHttp\Client; | ||
use yii\base\Component; | ||
|
@@ -12,11 +12,11 @@ | |
use yii\helpers\VarDumper; | ||
use yii\web\ForbiddenHttpException; | ||
use yii\web\HttpException; | ||
use yarcode\freekassa\events\GatewayEvent; | ||
use sdelfi\freekassa\events\GatewayEvent; | ||
|
||
/** | ||
* Class Merchant | ||
* @package yarcode\freekassa | ||
* @package sdelfi\freekassa | ||
*/ | ||
class Merchant extends Component | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,14 @@ | |
* @author Valentin Konusov <[email protected]> | ||
*/ | ||
|
||
namespace yarcode\freekassa; | ||
namespace sdelfi\freekassa; | ||
|
||
use yii\base\Widget; | ||
use yii\web\View; | ||
|
||
/** | ||
* Class RedirectForm | ||
* @package yarcode\freekassa | ||
* @package sdelfi\freekassa | ||
*/ | ||
class RedirectForm extends Widget | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,16 +3,16 @@ | |
* @author Valentin Konusov <[email protected]> | ||
*/ | ||
|
||
namespace yarcode\freekassa\actions; | ||
namespace sdelfi\freekassa\actions; | ||
|
||
use yarcode\freekassa\Merchant; | ||
use sdelfi\freekassa\Merchant; | ||
use yii\base\Action; | ||
use yii\base\InvalidConfigException; | ||
use yii\web\Response; | ||
|
||
/** | ||
* Class ResultAction | ||
* @package yarcode\freekassa\actions | ||
* @package sdelfi\freekassa\actions | ||
*/ | ||
class ResultAction extends Action | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* @author Valentin Konusov <[email protected]> | ||
*/ | ||
|
||
namespace yarcode\freekassa\events; | ||
namespace sdelfi\freekassa\events; | ||
|
||
use yii\base\Event; | ||
use yii\db\ActiveRecord; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* @author Valentin Konusov <[email protected]> | ||
* | ||
* @var \yii\web\View $this | ||
* @var \yarcode\freekassa\Merchant $api | ||
* @var \sdelfi\freekassa\Merchant $api | ||
* @var integer $invoiceId | ||
* @var float $amount | ||
* @var string $description | ||
|