Replace src/Vendor by src/ScimServerPhp

This commit is contained in:
Julien Schneider 2023-02-02 16:48:56 +01:00
parent 43c0cf0e7a
commit 18ef96044c
11 changed files with 26 additions and 26 deletions

View file

@ -7,7 +7,7 @@ if (file_exists(__DIR__ . '/../vendor/autoload.php')) {
require __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 * A function that prints the usage help message to standard output

View file

@ -41,10 +41,10 @@
}, },
"extra": { "extra": {
"mozart": { "mozart": {
"dep_namespace": "Opf\\Vendor\\", "dep_namespace": "Opf\\ScimServerPhp\\",
"dep_directory": "/src/Vendor/", "dep_directory": "/src/ScimServerPhp/",
"classmap_directory": "/classes/vendor/", "classmap_directory": "/classes/scimserverphp/",
"classmap_prefix": "Vendor_", "classmap_prefix": "ScimServerPhp_",
"packages": [ "packages": [
"firebase/php-jwt" "firebase/php-jwt"
], ],

22
composer.lock generated
View file

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "6bd82cfc51df31f75729f38070c619a7", "content-hash": "35bbc7ad9802c719dae67a1560f171cb",
"packages": [ "packages": [
{ {
"name": "brick/math", "name": "brick/math",
@ -670,16 +670,16 @@
}, },
{ {
"name": "laravel/serializable-closure", "name": "laravel/serializable-closure",
"version": "v1.2.2", "version": "v1.3.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/serializable-closure.git", "url": "https://github.com/laravel/serializable-closure.git",
"reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae" "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/serializable-closure/zipball/47afb7fae28ed29057fdca37e16a84f90cc62fae", "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
"reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae", "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -726,7 +726,7 @@
"issues": "https://github.com/laravel/serializable-closure/issues", "issues": "https://github.com/laravel/serializable-closure/issues",
"source": "https://github.com/laravel/serializable-closure" "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", "name": "league/flysystem",
@ -982,16 +982,16 @@
}, },
{ {
"name": "nesbot/carbon", "name": "nesbot/carbon",
"version": "2.65.0", "version": "2.66.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/briannesbitt/Carbon.git", "url": "https://github.com/briannesbitt/Carbon.git",
"reference": "09acf64155c16dc6f580f36569ae89344e9734a3" "reference": "496712849902241f04902033b0441b269effe001"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/09acf64155c16dc6f580f36569ae89344e9734a3", "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
"reference": "09acf64155c16dc6f580f36569ae89344e9734a3", "reference": "496712849902241f04902033b0441b269effe001",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -1080,7 +1080,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2023-01-06T15:55:01+00:00" "time": "2023-01-29T18:53:47+00:00"
}, },
{ {
"name": "nikic/fast-route", "name": "nikic/fast-route",

View file

@ -1,6 +1,6 @@
<?php <?php
namespace Opf\Vendor\Firebase\JWT; namespace Opf\ScimServerPhp\Firebase\JWT;
class BeforeValidException extends \UnexpectedValueException class BeforeValidException extends \UnexpectedValueException
{ {

View file

@ -1,6 +1,6 @@
<?php <?php
namespace Opf\Vendor\Firebase\JWT; namespace Opf\ScimServerPhp\Firebase\JWT;
use ArrayAccess; use ArrayAccess;
use LogicException; use LogicException;

View file

@ -1,6 +1,6 @@
<?php <?php
namespace Opf\Vendor\Firebase\JWT; namespace Opf\ScimServerPhp\Firebase\JWT;
class ExpiredException extends \UnexpectedValueException class ExpiredException extends \UnexpectedValueException
{ {

View file

@ -1,6 +1,6 @@
<?php <?php
namespace Opf\Vendor\Firebase\JWT; namespace Opf\ScimServerPhp\Firebase\JWT;
use DomainException; use DomainException;
use InvalidArgumentException; use InvalidArgumentException;
@ -258,7 +258,7 @@ class JWK
/** /**
* Encodes a value into a DER object. * 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 int $type DER tag
* @param string $value the value to encode * @param string $value the value to encode

View file

@ -1,6 +1,6 @@
<?php <?php
namespace Opf\Vendor\Firebase\JWT; namespace Opf\ScimServerPhp\Firebase\JWT;
use ArrayAccess; use ArrayAccess;
use DateTime; use DateTime;

View file

@ -1,6 +1,6 @@
<?php <?php
namespace Opf\Vendor\Firebase\JWT; namespace Opf\ScimServerPhp\Firebase\JWT;
use InvalidArgumentException; use InvalidArgumentException;
use OpenSSLAsymmetricKey; use OpenSSLAsymmetricKey;

View file

@ -1,6 +1,6 @@
<?php <?php
namespace Opf\Vendor\Firebase\JWT; namespace Opf\ScimServerPhp\Firebase\JWT;
class SignatureInvalidException extends \UnexpectedValueException class SignatureInvalidException extends \UnexpectedValueException
{ {

View file

@ -3,8 +3,8 @@
namespace Opf\Util\Authentication; namespace Opf\Util\Authentication;
use Exception; use Exception;
use Opf\Vendor\Firebase\JWT\JWT; use Opf\ScimServerPhp\Firebase\JWT\JWT;
use Opf\Vendor\Firebase\JWT\Key; use Opf\ScimServerPhp\Firebase\JWT\Key;
use Opf\Util\Util; use Opf\Util\Util;
use Psr\Container\ContainerInterface; use Psr\Container\ContainerInterface;