Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Kasatkin committed Nov 16, 2015
1 parent 9c5255d commit c952321
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea
/composer.lock
/vendor
9 changes: 9 additions & 0 deletions Client.php
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
{
}
24 changes: 24 additions & 0 deletions composer.json
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\\": "/"
}
}
}

0 comments on commit c952321

Please sign in to comment.