-
Notifications
You must be signed in to change notification settings - Fork 2
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
Sergey Kasatkin
committed
Nov 16, 2015
1 parent
9c5255d
commit c952321
Showing
3 changed files
with
36 additions
and
0 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,3 @@ | ||
.idea | ||
/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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
namespace gietos\yii\Dadata; | ||
|
||
use yii\base\Configurable; | ||
|
||
class Client extends \Dadata\Client implements Configurable | ||
{ | ||
} |
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,24 @@ | ||
{ | ||
"name": "gietos/yii2-dadata", | ||
"description": "A Yii2 client for Dadata (https://dadata.ru/)", | ||
"type": "yii2-extension", | ||
"keywords": ["dadata", "api", "yii2"], | ||
"minimum-stability": "dev", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Sergey Kasatkin", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.3.0", | ||
"yiisoft/yii2": ">=2.0.0", | ||
"gietos/dadata": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"gietos\\yii\\": "/" | ||
} | ||
} | ||
} |