Skip to content

Commit f5bb2b8

Browse files
committed
update:升级依赖
1 parent d4e93f8 commit f5bb2b8

36 files changed

+9351
-9239
lines changed

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
"symfony/property-info": "4.4.*",
3131
"symfony/proxy-manager-bridge": "4.4.*",
3232
"symfony/security-bundle": "4.4.*",
33+
"symfony/security-core": "4.4.23",
34+
"symfony/security-guard": "4.4.23",
3335
"symfony/serializer": "4.4.*",
3436
"symfony/translation": "4.4.*",
3537
"symfony/twig-bundle": "^4.4",
@@ -90,9 +92,8 @@
9092
},
9193
"extra": {
9294
"symfony": {
93-
"allow-contrib": true,
94-
"require": "4.4.*",
95-
"endpoint": "http://127.0.0.1:8000"
95+
"allow-contrib": false,
96+
"require": "4.4.*"
9697
}
9798
}
9899
}

composer.lock

Lines changed: 13 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

symfony.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@
9696
"nikic/php-parser": {
9797
"version": "4.10.4"
9898
},
99+
"php": {
100+
"version": "7.3"
101+
},
99102
"phpdocumentor/reflection-common": {
100103
"version": "2.2.0"
101104
},

vendor/autoload.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<?php
22

3+
if (\PHP_VERSION_ID < 70300) {
4+
echo sprintf("Fatal Error: composer.lock was created for PHP version 7.3 or higher but the current PHP version is %d.%d.%d.\n", PHP_MAJOR_VERSION, PHP_MINOR_VERSION, PHP_RELEASE_VERSION);
5+
exit(1);
6+
}
7+
38
// autoload.php @generated by Composer
49

510
require_once __DIR__ . '/composer/autoload_real.php';

vendor/composer/ClassLoader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
*
3838
* @author Fabien Potencier <fabien@symfony.com>
3939
* @author Jordi Boggiano <j.boggiano@seld.be>
40-
* @see https://www.php-fig.org/psr/psr-0/
41-
* @see https://www.php-fig.org/psr/psr-4/
40+
* @see http://www.php-fig.org/psr/psr-0/
41+
* @see http://www.php-fig.org/psr/psr-4/
4242
*/
4343
class ClassLoader
4444
{

vendor/composer/autoload_classmap.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
return array(
99
'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
1010
'Collator' => $vendorDir . '/symfony/intl/Resources/stubs/Collator.php',
11-
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
1211
'IntlDateFormatter' => $vendorDir . '/symfony/intl/Resources/stubs/IntlDateFormatter.php',
1312
'JsonException' => $vendorDir . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
1413
'Locale' => $vendorDir . '/symfony/intl/Resources/stubs/Locale.php',

vendor/composer/autoload_real.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,13 @@ public static function getLoader()
2222
return self::$loader;
2323
}
2424

25-
require __DIR__ . '/platform_check.php';
26-
2725
spl_autoload_register(array('ComposerAutoloaderInit28122b087ec0058d59c342c0dd3dd217', 'loadClassLoader'), true, true);
2826
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
2927
spl_autoload_unregister(array('ComposerAutoloaderInit28122b087ec0058d59c342c0dd3dd217', 'loadClassLoader'));
3028

3129
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
3230
if ($useStaticLoader) {
33-
require __DIR__ . '/autoload_static.php';
31+
require_once __DIR__ . '/autoload_static.php';
3432

3533
call_user_func(\Composer\Autoload\ComposerStaticInit28122b087ec0058d59c342c0dd3dd217::getInitializer($loader));
3634
} else {

vendor/composer/autoload_static.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,6 @@ class ComposerStaticInit28122b087ec0058d59c342c0dd3dd217
648648
public static $classMap = array (
649649
'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
650650
'Collator' => __DIR__ . '/..' . '/symfony/intl/Resources/stubs/Collator.php',
651-
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
652651
'IntlDateFormatter' => __DIR__ . '/..' . '/symfony/intl/Resources/stubs/IntlDateFormatter.php',
653652
'JsonException' => __DIR__ . '/..' . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
654653
'Locale' => __DIR__ . '/..' . '/symfony/intl/Resources/stubs/Locale.php',

0 commit comments

Comments
 (0)