Replace src/Vendor by src/ScimServerPhp
This commit is contained in:
parent
43c0cf0e7a
commit
18ef96044c
11 changed files with 26 additions and 26 deletions
|
@ -7,7 +7,7 @@ if (file_exists(__DIR__ . '/../vendor/autoload.php')) {
|
|||
require __DIR__ . '/../../../../vendor/autoload.php';
|
||||
}
|
||||
|
||||
use Opf\Vendor\Firebase\JWT\JWT;
|
||||
use Opf\ScimServerPhp\Firebase\JWT\JWT;
|
||||
|
||||
/**
|
||||
* A function that prints the usage help message to standard output
|
||||
|
|
|
@ -41,10 +41,10 @@
|
|||
},
|
||||
"extra": {
|
||||
"mozart": {
|
||||
"dep_namespace": "Opf\\Vendor\\",
|
||||
"dep_directory": "/src/Vendor/",
|
||||
"classmap_directory": "/classes/vendor/",
|
||||
"classmap_prefix": "Vendor_",
|
||||
"dep_namespace": "Opf\\ScimServerPhp\\",
|
||||
"dep_directory": "/src/ScimServerPhp/",
|
||||
"classmap_directory": "/classes/scimserverphp/",
|
||||
"classmap_prefix": "ScimServerPhp_",
|
||||
"packages": [
|
||||
"firebase/php-jwt"
|
||||
],
|
||||
|
|
22
composer.lock
generated
22
composer.lock
generated
|
@ -4,7 +4,7 @@
|
|||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "6bd82cfc51df31f75729f38070c619a7",
|
||||
"content-hash": "35bbc7ad9802c719dae67a1560f171cb",
|
||||
"packages": [
|
||||
{
|
||||
"name": "brick/math",
|
||||
|
@ -670,16 +670,16 @@
|
|||
},
|
||||
{
|
||||
"name": "laravel/serializable-closure",
|
||||
"version": "v1.2.2",
|
||||
"version": "v1.3.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/serializable-closure.git",
|
||||
"reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae"
|
||||
"reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/serializable-closure/zipball/47afb7fae28ed29057fdca37e16a84f90cc62fae",
|
||||
"reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae",
|
||||
"url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
|
||||
"reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
@ -726,7 +726,7 @@
|
|||
"issues": "https://github.com/laravel/serializable-closure/issues",
|
||||
"source": "https://github.com/laravel/serializable-closure"
|
||||
},
|
||||
"time": "2022-09-08T13:45:54+00:00"
|
||||
"time": "2023-01-30T18:31:20+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/flysystem",
|
||||
|
@ -982,16 +982,16 @@
|
|||
},
|
||||
{
|
||||
"name": "nesbot/carbon",
|
||||
"version": "2.65.0",
|
||||
"version": "2.66.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/briannesbitt/Carbon.git",
|
||||
"reference": "09acf64155c16dc6f580f36569ae89344e9734a3"
|
||||
"reference": "496712849902241f04902033b0441b269effe001"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/09acf64155c16dc6f580f36569ae89344e9734a3",
|
||||
"reference": "09acf64155c16dc6f580f36569ae89344e9734a3",
|
||||
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
|
||||
"reference": "496712849902241f04902033b0441b269effe001",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
@ -1080,7 +1080,7 @@
|
|||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-01-06T15:55:01+00:00"
|
||||
"time": "2023-01-29T18:53:47+00:00"
|
||||
},
|
||||
{
|
||||
"name": "nikic/fast-route",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Opf\Vendor\Firebase\JWT;
|
||||
namespace Opf\ScimServerPhp\Firebase\JWT;
|
||||
|
||||
class BeforeValidException extends \UnexpectedValueException
|
||||
{
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Opf\Vendor\Firebase\JWT;
|
||||
namespace Opf\ScimServerPhp\Firebase\JWT;
|
||||
|
||||
use ArrayAccess;
|
||||
use LogicException;
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Opf\Vendor\Firebase\JWT;
|
||||
namespace Opf\ScimServerPhp\Firebase\JWT;
|
||||
|
||||
class ExpiredException extends \UnexpectedValueException
|
||||
{
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Opf\Vendor\Firebase\JWT;
|
||||
namespace Opf\ScimServerPhp\Firebase\JWT;
|
||||
|
||||
use DomainException;
|
||||
use InvalidArgumentException;
|
||||
|
@ -258,7 +258,7 @@ class JWK
|
|||
|
||||
/**
|
||||
* Encodes a value into a DER object.
|
||||
* Also defined in Opf\Vendor\Firebase\JWT\JWT
|
||||
* Also defined in Opf\ScimServerPhp\Firebase\JWT\JWT
|
||||
*
|
||||
* @param int $type DER tag
|
||||
* @param string $value the value to encode
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Opf\Vendor\Firebase\JWT;
|
||||
namespace Opf\ScimServerPhp\Firebase\JWT;
|
||||
|
||||
use ArrayAccess;
|
||||
use DateTime;
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Opf\Vendor\Firebase\JWT;
|
||||
namespace Opf\ScimServerPhp\Firebase\JWT;
|
||||
|
||||
use InvalidArgumentException;
|
||||
use OpenSSLAsymmetricKey;
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Opf\Vendor\Firebase\JWT;
|
||||
namespace Opf\ScimServerPhp\Firebase\JWT;
|
||||
|
||||
class SignatureInvalidException extends \UnexpectedValueException
|
||||
{
|
|
@ -3,8 +3,8 @@
|
|||
namespace Opf\Util\Authentication;
|
||||
|
||||
use Exception;
|
||||
use Opf\Vendor\Firebase\JWT\JWT;
|
||||
use Opf\Vendor\Firebase\JWT\Key;
|
||||
use Opf\ScimServerPhp\Firebase\JWT\JWT;
|
||||
use Opf\ScimServerPhp\Firebase\JWT\Key;
|
||||
use Opf\Util\Util;
|
||||
use Psr\Container\ContainerInterface;
|
||||
|
||||
|
|
Loading…
Reference in a new issue