Skip to content

Commit

Permalink
Merge pull request #44 from kenjis/small-fixes
Browse files Browse the repository at this point in the history
Small fixes
  • Loading branch information
datamweb authored Aug 23, 2023
2 parents 8b82c5b + cf8fe4c commit 7654f13
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[![Latest Stable Version](http://poser.pugx.org/datamweb/shield-oauth/v?style=for-the-badge)](https://packagist.org/packages/datamweb/shield-oauth) [![Total Downloads](http://poser.pugx.org/datamweb/shield-oauth/downloads?style=for-the-badge)](https://packagist.org/packages/datamweb/shield-oauth) [![Latest Unstable Version](http://poser.pugx.org/datamweb/shield-oauth/v/unstable?style=for-the-badge)](https://packagist.org/packages/datamweb/shield-oauth) [![License](http://poser.pugx.org/datamweb/shield-oauth/license?style=for-the-badge)](https://packagist.org/packages/datamweb/shield-oauth) [![PHP Version Require](http://poser.pugx.org/datamweb/shield-oauth/require/php?style=for-the-badge)](https://packagist.org/packages/datamweb/shield-oauth)


`Shield OAuth` helps you to provide the possibility of login or registering users through the OAuth service. Currently, `Shield OAuth` supports `Google OAuth` and `Github OAuth` by default, but it allows you to implement it for any other service, including **Yahoo**, **Facebook**, **Twitter**, **LinkedIn**, **GitLab** and ...
`Shield OAuth` helps you to provide the possibility of login or registering users through the OAuth service. Currently, `Shield OAuth` supports `Google OAuth` and `GitHub OAuth` by default, but it allows you to implement it for any other service, including **Yahoo**, **Facebook**, **Twitter**, **LinkedIn**, **GitLab** and ...

In `Shield OAuth`, it has been considered to be easy to use by developers and the possibility of expansion to connect to other services in the shortest possible time.

Expand Down
1 change: 0 additions & 1 deletion src/Database/Migrations/2022-10-20-182737_ShieldOAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public function up(): void
'constraint' => '1000',
'null' => true,
],

];

$this->forge->addColumn('users', $fields);
Expand Down
3 changes: 1 addition & 2 deletions src/Language/en/ShieldOAuthLang.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,12 @@

// Errors List For all OAuth
'Github' => [
'github' => 'Github',
'github' => 'GitHub',
'not_allow' => "Now you can't login or register with GitHub!",
],
'Google' => [
'google' => 'Google',
'not_allow' => "Now you can't login or register with Google!",

],
// 'Yahoo' => [
// 'yahoo' => 'Yahoo',
Expand Down
3 changes: 1 addition & 2 deletions src/Language/fr/ShieldOAuthLang.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,12 @@

// Errors List For all OAuth
'Github' => [
'github' => 'Github',
'github' => 'GitHub',
'not_allow' => 'Vous ne pouvez pas vous connecter ou vous inscrire avec GitHub maintenant!',
],
'Google' => [
'google' => 'Google',
'not_allow' => 'Vous ne pouvez pas vous connecter ou vous inscrire avec Google maintenant!',

],
// 'Yahoo' => [
// 'yahoo' => 'Yahoo',
Expand Down

0 comments on commit 7654f13

Please sign in to comment.