Skip to content

Commit

Permalink
chore: updated oauth2-client version from 2.0.0 to 2.6.0 (Schine#1)
Browse files Browse the repository at this point in the history
Co-authored-by: Sergey Kharchenko <s.kharchenko@lerpal.com>
  • Loading branch information
Nymphxyz and Sergey Kharchenko authored Feb 25, 2024
1 parent 0d20465 commit 326cb62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendors/oauth2-client
Submodule oauth2-client updated 68 files
+29 −0 .codecov.yml
+12 −6 .gitattributes
+1 −0 .github/ISSUE_TEMPLATE.md
+1 −0 .github/PULL_REQUEST_TEMPLATE.md
+8 −0 .github/dependabot.yml
+83 −0 .github/workflows/continuous-integration.yml
+0 −8 .scrutinizer.yml
+0 −26 .travis.yml
+82 −0 CHANGELOG.md
+76 −0 CODE_OF_CONDUCT.md
+1 −1 LICENSE
+5 −5 README.PROVIDER-GUIDE.md
+0 −97 README.PROVIDERS.md
+0 −7 README.UPGRADING.md
+21 −17 README.md
+17 −10 composer.json
+9 −0 docs/.gitignore
+1 −0 docs/.ruby-version
+1 −0 docs/CNAME
+3 −0 docs/Gemfile
+264 −0 docs/Gemfile.lock
+2 −0 docs/_config.yml
+8 −0 docs/_data/images.yml
+8 −0 docs/_data/menu.yml
+5 −0 docs/_data/project.yml
+99 −0 docs/_layouts/default.html
+39 −0 docs/index.md
+90 −0 docs/providers/implementing.md
+29 −0 docs/providers/league.md
+134 −0 docs/providers/thirdparty.md
+126 −0 docs/usage.md
+10 −11 phpunit.xml
+42 −0 src/OptionProvider/HttpBasicAuthOptionProvider.php
+30 −0 src/OptionProvider/OptionProviderInterface.php
+51 −0 src/OptionProvider/PostAuthOptionProvider.php
+71 −77 src/Provider/AbstractProvider.php
+7 −1 src/Provider/GenericProvider.php
+51 −32 src/Token/AccessToken.php
+72 −0 src/Token/AccessTokenInterface.php
+25 −0 src/Token/ResourceOwnerAccessTokenInterface.php
+3 −1 src/Tool/BearerAuthorizationTrait.php
+70 −0 src/Tool/GuardedPropertyTrait.php
+8 −3 src/Tool/MacAuthorizationTrait.php
+122 −0 src/Tool/ProviderRedirectTrait.php
+1 −1 src/Tool/QueryBuilderTrait.php
+0 −45 test/Bootstrap.php
+4 −4 test/src/Grant/AuthorizationCodeTest.php
+0 −1 test/src/Grant/Fake.php
+19 −32 test/src/Grant/GrantFactoryTest.php
+37 −31 test/src/Grant/GrantTestCase.php
+7 −8 test/src/Grant/PasswordTest.php
+4 −4 test/src/Grant/RefreshTokenTest.php
+56 −0 test/src/OptionProvider/HttpBasicAuthOptionProviderTest.php
+29 −0 test/src/OptionProvider/PostAuthOptionProviderTest.php
+408 −272 test/src/Provider/AbstractProviderTest.php
+0 −36 test/src/Provider/ConcreteProviderTest.php
+0 −59 test/src/Provider/Exception/IdentityProviderException.php
+21 −0 test/src/Provider/Exception/IdentityProviderExceptionTest.php
+15 −0 test/src/Provider/Fake.php
+43 −0 test/src/Provider/Fake/ProviderWithAccessTokenHints.php
+32 −0 test/src/Provider/Fake/ProviderWithGuardedProperties.php
+0 −2 test/src/Provider/Generic.php
+37 −17 test/src/Provider/GenericProviderTest.php
+107 −14 test/src/Token/AccessTokenTest.php
+2 −2 test/src/Tool/ArrayAccessorTraitTest.php
+160 −0 test/src/Tool/ProviderRedirectTraitTest.php
+5 −7 test/src/Tool/QueryBuilderTraitTest.php
+8 −11 test/src/Tool/RequestFactoryTest.php

0 comments on commit 326cb62

Please sign in to comment.