PHPackages                             tonyaxo/yii2-typeform - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. tonyaxo/yii2-typeform

ActiveYii2-extension[API Development](/categories/api)

tonyaxo/yii2-typeform
=====================

Typeform.com integration for the Yii framework

0.4.1(7y ago)2730BSD-3-ClausePHP

Since Aug 14Pushed 7y ago1 watchersCompare

[ Source](https://github.com/tonyaxo/yii2-typeform)[ Packagist](https://packagist.org/packages/tonyaxo/yii2-typeform)[ RSS](/packages/tonyaxo-yii2-typeform/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (1)Versions (12)Used By (0)

 [ ![](https://avatars0.githubusercontent.com/u/993323) ](https://github.com/yiisoft)

Typeform.com Extension for Yii 2
================================

[](#typeformcom-extension-for-yii-2)

[Typeform.com](https://typeform.com) yii2 integration

[![Build Status](https://camo.githubusercontent.com/61af6def86585e46ea052b56b8ba803143b7fca06ad9846b8c30ec03c7b5636e/68747470733a2f2f7472617669732d63692e6f72672f746f6e7961786f2f796969322d74797065666f726d2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/tonyaxo/yii2-typeform)[![Coverage Status](https://camo.githubusercontent.com/2f9ec55afc8927d337c637ec6ded56113043a361a8685fe30cdf48123110ebbd/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f746f6e7961786f2f796969322d74797065666f726d2f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/tonyaxo/yii2-typeform?branch=master)[![Maintainability](https://camo.githubusercontent.com/c7f63224a8e10b19980bd57617c0bae36b75af50a24cbf51ce738942954e0970/68747470733a2f2f6170692e636f6465636c696d6174652e636f6d2f76312f6261646765732f35633266316565613536303330323234663765312f6d61696e7461696e6162696c697479)](https://codeclimate.com/github/tonyaxo/yii2-typeform/maintainability)

Installation
------------

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
php composer.phar require --prefer-dist tonyaxo/yii2-typeform "*"

```

or add

```
"tonyaxo/yii2-typeform": "*"

```

to the require section of your `composer.json` file.

Usage
-----

[](#usage)

Once the extension is installed, simply use it in your code by :

```
// SiteController.php
public function actions()
{
    return [
        'index' => [
            'class' => 'tonyaxo\yii2typeform\AuthAction',
            'successCallback' => [$this, 'onAuthSuccess'],
        ],
    ];
}
```

```
// auth-view.php
