承接 emanueleminotto/hwi-oauth-bridge 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

emanueleminotto/hwi-oauth-bridge

最新稳定版本:1.0.1

Composer 安装命令:

composer require emanueleminotto/hwi-oauth-bridge

包简介

Missing bridge between the HWIOAuthBundle and your Symfony 2 project.

README 文档

README

Latest Version on Packagist Software License Build Status Coverage Status Quality Score

Missing bridge between the HWIOAuthBundle and your Symfony 2 project.

Install

Via Composer

$ composer require emanueleminotto/hwi-oauth-bridge

Usage

To use one or more of included traits add them to your entities:

namespace AppBundle;

use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity
 * @ORM\Table
 */
class Example
{
    use \EmanueleMinotto\HwiOauthBridge\Traits\Entity\FacebookTrait;

    /**
     * @ORM\Column(type="integer")
     * @ORM\Id
     */
    private $id;

    // ...
}

And all related methods will be available throught the trait, so:

$example = new AppBundle\Example();

$example->setFacebookEmail('user@example.com');

$em->persist($example);
$em->flush();

echo $example->getFacebookEmail(); // user@example.com

Doctrine 2 ORM are available under the folder Entity and Doctrine ODM under the Document folder.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email minottoemanuele@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 22
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-10-24