Skip to content

Commit

Permalink
Merge pull request #7 from PhantPHP/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
lennyrouanet authored Mar 7, 2023
2 parents 2bcac59 + e2193f9 commit 43e694e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion component/Fixture/Service/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Phant\Auth\Domain\Service\Application as ServiceApplication;

use Phant\Cache\SimpleCache;
use Phant\Cache\File as SimpleCache;
use Phant\Auth\Fixture\Port\Application as FixtureRepositoryApplication;

final class Application
Expand Down
2 changes: 1 addition & 1 deletion component/Fixture/Service/RequestAccess.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Phant\Auth\Domain\Service\RequestAccess as ServiceRequestAccess;

use Phant\Cache\SimpleCache;
use Phant\Cache\File as SimpleCache;
use Phant\Auth\Fixture\DataStructure\SslKey as FixtureSslKey;
use Phant\Auth\Fixture\Port\RequestAccess as FixtureRepositoryRequestAccess;

Expand Down
2 changes: 1 addition & 1 deletion component/Fixture/Service/RequestAccessFromApiKey.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Phant\Auth\Domain\Service\RequestAccessFromApiKey as ServiceRequestAccessFromApiKey;

use Phant\Cache\SimpleCache;
use Phant\Cache\File as SimpleCache;
use Phant\Auth\Fixture\Service\{
AccessToken as FixtureServiceAccessToken,
RequestAccess as FixtureServiceRequestAccess,
Expand Down
2 changes: 1 addition & 1 deletion component/Fixture/Service/RequestAccessFromOtp.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
AccessToken as FixtureServiceAccessToken,
RequestAccess as FixtureServiceRequestAccess,
};
use Phant\Cache\SimpleCache;
use Phant\Cache\File as SimpleCache;

final class RequestAccessFromOtp
{
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
"phant/data-structure": "4.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"psr/simple-cache": "^3.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5",
"phant/cache": "1.*"
"friendsofphp/php-cs-fixer": "3.*",
"psr/simple-cache": "3.*",
"phpstan/phpstan": "1.*",
"phpunit/phpunit": "9.*",
"phant/cache": "2.*"
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix ./ --rules=@PSR12",
Expand Down
2 changes: 1 addition & 1 deletion test/Domain/Service/RequestAccessFromOtpTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
use Phant\Auth\Fixture\Service\{
RequestAccessFromOtp as FixtureServiceRequestAccessFromOtp,
};
use Phant\Cache\SimpleCache;
use Phant\Cache\File as SimpleCache;

use Phant\Error\NotAuthorized;
use Phant\Error\NotCompliant;
Expand Down

0 comments on commit 43e694e

Please sign in to comment.