Skip to content

Commit eba7a80

Browse files
committed
Fix bug
1 parent fbf5ffa commit eba7a80

File tree

359 files changed

+122
-68538
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

359 files changed

+122
-68538
lines changed

system/vendor/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
require_once __DIR__ . '/composer/autoload_real.php';
66

7-
return ComposerAutoloaderInitd1d42229c9095110dbdd0c092da24841::getLoader();
7+
return ComposerAutoloaderInitacff8c1f4e21d7dfd33bc377346a5f26::getLoader();

system/vendor/composer/ClassLoader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ public function isClassMapAuthoritative()
279279
*/
280280
public function setApcuPrefix($apcuPrefix)
281281
{
282-
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
282+
$this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null;
283283
}
284284

285285
/**
@@ -377,7 +377,7 @@ private function findFileWithExtension($class, $ext)
377377
$subPath = $class;
378378
while (false !== $lastPos = strrpos($subPath, '\\')) {
379379
$subPath = substr($subPath, 0, $lastPos);
380-
$search = $subPath . '\\';
380+
$search = $subPath.'\\';
381381
if (isset($this->prefixDirsPsr4[$search])) {
382382
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
383383
foreach ($this->prefixDirsPsr4[$search] as $dir) {

system/vendor/composer/LICENSE

Lines changed: 52 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,56 @@
1+
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: Composer
3+
Upstream-Contact: Jordi Boggiano <j.boggiano@seld.be>
4+
Source: https://github.com/composer/composer
15

2-
Copyright (c) Nils Adermann, Jordi Boggiano
6+
Files: *
7+
Copyright: 2016, Nils Adermann <naderman@naderman.de>
8+
2016, Jordi Boggiano <j.boggiano@seld.be>
9+
License: Expat
310

4-
Permission is hereby granted, free of charge, to any person obtaining a copy
5-
of this software and associated documentation files (the "Software"), to deal
6-
in the Software without restriction, including without limitation the rights
7-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8-
copies of the Software, and to permit persons to whom the Software is furnished
9-
to do so, subject to the following conditions:
11+
Files: src/Composer/Util/TlsHelper.php
12+
Copyright: 2016, Nils Adermann <naderman@naderman.de>
13+
2016, Jordi Boggiano <j.boggiano@seld.be>
14+
2013, Evan Coury <me@evancoury.com>
15+
License: Expat and BSD-2-Clause
1016

11-
The above copyright notice and this permission notice shall be included in all
12-
copies or substantial portions of the Software.
13-
14-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20-
THE SOFTWARE.
17+
License: BSD-2-Clause
18+
Redistribution and use in source and binary forms, with or without modification,
19+
are permitted provided that the following conditions are met:
20+
.
21+
* Redistributions of source code must retain the above copyright notice,
22+
this list of conditions and the following disclaimer.
23+
.
24+
* Redistributions in binary form must reproduce the above copyright notice,
25+
this list of conditions and the following disclaimer in the documentation
26+
and/or other materials provided with the distribution.
27+
.
28+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
29+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
30+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
31+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
32+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
33+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
34+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
35+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
37+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2138

39+
License: Expat
40+
Permission is hereby granted, free of charge, to any person obtaining a copy
41+
of this software and associated documentation files (the "Software"), to deal
42+
in the Software without restriction, including without limitation the rights
43+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
44+
copies of the Software, and to permit persons to whom the Software is furnished
45+
to do so, subject to the following conditions:
46+
.
47+
The above copyright notice and this permission notice shall be included in all
48+
copies or substantial portions of the Software.
49+
.
50+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
51+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
52+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
53+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
54+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
55+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
56+
THE SOFTWARE.

system/vendor/composer/autoload_psr4.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77

88
return array(
99
'GraphQL\\' => array($vendorDir . '/webonyx/graphql-php/src'),
10+
'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
1011
);

system/vendor/composer/autoload_real.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// autoload_real.php @generated by Composer
44

5-
class ComposerAutoloaderInitd1d42229c9095110dbdd0c092da24841
5+
class ComposerAutoloaderInitacff8c1f4e21d7dfd33bc377346a5f26
66
{
77
private static $loader;
88

@@ -19,15 +19,15 @@ public static function getLoader()
1919
return self::$loader;
2020
}
2121

22-
spl_autoload_register(array('ComposerAutoloaderInitd1d42229c9095110dbdd0c092da24841', 'loadClassLoader'), true, true);
22+
spl_autoload_register(array('ComposerAutoloaderInitacff8c1f4e21d7dfd33bc377346a5f26', 'loadClassLoader'), true, true);
2323
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24-
spl_autoload_unregister(array('ComposerAutoloaderInitd1d42229c9095110dbdd0c092da24841', 'loadClassLoader'));
24+
spl_autoload_unregister(array('ComposerAutoloaderInitacff8c1f4e21d7dfd33bc377346a5f26', 'loadClassLoader'));
2525

2626
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
2727
if ($useStaticLoader) {
2828
require_once __DIR__ . '/autoload_static.php';
2929

30-
call_user_func(\Composer\Autoload\ComposerStaticInitd1d42229c9095110dbdd0c092da24841::getInitializer($loader));
30+
call_user_func(\Composer\Autoload\ComposerStaticInitacff8c1f4e21d7dfd33bc377346a5f26::getInitializer($loader));
3131
} else {
3232
$map = require __DIR__ . '/autoload_namespaces.php';
3333
foreach ($map as $namespace => $path) {
@@ -48,19 +48,19 @@ public static function getLoader()
4848
$loader->register(true);
4949

5050
if ($useStaticLoader) {
51-
$includeFiles = Composer\Autoload\ComposerStaticInitd1d42229c9095110dbdd0c092da24841::$files;
51+
$includeFiles = Composer\Autoload\ComposerStaticInitacff8c1f4e21d7dfd33bc377346a5f26::$files;
5252
} else {
5353
$includeFiles = require __DIR__ . '/autoload_files.php';
5454
}
5555
foreach ($includeFiles as $fileIdentifier => $file) {
56-
composerRequired1d42229c9095110dbdd0c092da24841($fileIdentifier, $file);
56+
composerRequireacff8c1f4e21d7dfd33bc377346a5f26($fileIdentifier, $file);
5757
}
5858

5959
return $loader;
6060
}
6161
}
6262

63-
function composerRequired1d42229c9095110dbdd0c092da24841($fileIdentifier, $file)
63+
function composerRequireacff8c1f4e21d7dfd33bc377346a5f26($fileIdentifier, $file)
6464
{
6565
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
6666
require $file;

system/vendor/composer/autoload_static.php

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Composer\Autoload;
66

7-
class ComposerStaticInitd1d42229c9095110dbdd0c092da24841
7+
class ComposerStaticInitacff8c1f4e21d7dfd33bc377346a5f26
88
{
99
public static $files = array (
1010
'c594688b3441835d5575f3085da4a242' => __DIR__ . '/..' . '/webonyx/graphql-php/src/deprecated.php',
@@ -15,20 +15,28 @@ class ComposerStaticInitd1d42229c9095110dbdd0c092da24841
1515
array (
1616
'GraphQL\\' => 8,
1717
),
18+
'F' =>
19+
array (
20+
'Firebase\\JWT\\' => 13,
21+
),
1822
);
1923

2024
public static $prefixDirsPsr4 = array (
2125
'GraphQL\\' =>
2226
array (
2327
0 => __DIR__ . '/..' . '/webonyx/graphql-php/src',
2428
),
29+
'Firebase\\JWT\\' =>
30+
array (
31+
0 => __DIR__ . '/..' . '/firebase/php-jwt/src',
32+
),
2533
);
2634

2735
public static function getInitializer(ClassLoader $loader)
2836
{
2937
return \Closure::bind(function () use ($loader) {
30-
$loader->prefixLengthsPsr4 = ComposerStaticInitd1d42229c9095110dbdd0c092da24841::$prefixLengthsPsr4;
31-
$loader->prefixDirsPsr4 = ComposerStaticInitd1d42229c9095110dbdd0c092da24841::$prefixDirsPsr4;
38+
$loader->prefixLengthsPsr4 = ComposerStaticInitacff8c1f4e21d7dfd33bc377346a5f26::$prefixLengthsPsr4;
39+
$loader->prefixDirsPsr4 = ComposerStaticInitacff8c1f4e21d7dfd33bc377346a5f26::$prefixDirsPsr4;
3240

3341
}, null, ClassLoader::class);
3442
}

system/vendor/composer/installed.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,52 @@
11
[
2+
{
3+
"name": "firebase/php-jwt",
4+
"version": "v5.0.0",
5+
"version_normalized": "5.0.0.0",
6+
"source": {
7+
"type": "git",
8+
"url": "https://github.com/firebase/php-jwt.git",
9+
"reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
10+
},
11+
"dist": {
12+
"type": "zip",
13+
"url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
14+
"reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
15+
"shasum": ""
16+
},
17+
"require": {
18+
"php": ">=5.3.0"
19+
},
20+
"require-dev": {
21+
"phpunit/phpunit": " 4.8.35"
22+
},
23+
"time": "2017-06-27T22:17:23+00:00",
24+
"type": "library",
25+
"installation-source": "dist",
26+
"autoload": {
27+
"psr-4": {
28+
"Firebase\\JWT\\": "src"
29+
}
30+
},
31+
"notification-url": "https://packagist.org/downloads/",
32+
"license": [
33+
"BSD-3-Clause"
34+
],
35+
"authors": [
36+
{
37+
"name": "Neuman Vong",
38+
"role": "Developer",
39+
"email": "neuman+pear@twilio.com"
40+
},
41+
{
42+
"name": "Anant Narayanan",
43+
"role": "Developer",
44+
"email": "anant@php.net"
45+
}
46+
],
47+
"description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
48+
"homepage": "https://github.com/firebase/php-jwt"
49+
},
250
{
351
"name": "webonyx/graphql-php",
452
"version": "v0.11.6",
File renamed without changes.

0 commit comments

Comments
 (0)