Skip to content

Commit

Permalink
first update
Browse files Browse the repository at this point in the history
  • Loading branch information
exxxar committed Nov 15, 2022
1 parent b1418bb commit 7f7bdcd
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 9 deletions.
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/esia-laravel.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "hapxu3/esia-laravel",
"name": "exxxar/esia-laravel",
"description": "ESIA connector for Laravel framework",
"type": "library",
"keywords": [],
"license": "MIT",
"authors": [
{
"name": "Evgenii Zhemchuzhnikov",
"email": "narhis_8@mail.ru"
"name": "Aleksey Gukay",
"email": "exxxar@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.2",
"php": "8.*",
"fr05t1k/esia": "^2.0",
"laravel/socialite": "^5.0",
"guzzlehttp/guzzle": "^6.0",
Expand All @@ -22,13 +22,13 @@
"extra": {
"laravel": {
"providers": [
"Hapxu3\\Esia\\EsiaServiceProvider"
"Exxxar\\Esia\\EsiaServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Hapxu3\\Esia\\": "src"
"Exxxar\\Esia\\": "src"
}
}
}
4 changes: 2 additions & 2 deletions src/EsiaServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace hapxu3\Esia;
namespace exxxar\Esia;

use Hapxu3\Esia\Socialite\EsiaSocialiteProvider;
use Exxxar\Esia\Socialite\EsiaSocialiteProvider;
use Illuminate\Contracts\Container\Container;
use Illuminate\Support\ServiceProvider;
use Laravel\Socialite\Facades\Socialite;
Expand Down
2 changes: 1 addition & 1 deletion src/Socialite/EsiaSocialiteProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Hapxu3\Esia\Socialite;
namespace Exxxar\Esia\Socialite;

use Esia\Config;
use Esia\Exceptions\AbstractEsiaException;
Expand Down

0 comments on commit 7f7bdcd

Please sign in to comment.