update
commit
9ee8957774
|
|
@ -17,6 +17,7 @@
|
|||
"symfony/dom-crawler": "^7.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"bfinlay/laravel-excel-seeder": "^3.4",
|
||||
"fakerphp/faker": "^1.9.1",
|
||||
"laravel/pint": "^1.0",
|
||||
"laravel/sail": "^1.18",
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,73 @@
|
|||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class UpdateDatabaseSekolahSeeder extends Seeder
|
||||
{
|
||||
public function run()
|
||||
{
|
||||
DB::disableQueryLog();
|
||||
|
||||
$path = database_path('seeders/datasekolahlatlong.csv');
|
||||
|
||||
$file = fopen($path, 'r');
|
||||
|
||||
$header = fgetcsv($file, 10000, ";");
|
||||
|
||||
$rows = [];
|
||||
|
||||
while (($row = fgetcsv($file, 10000, ";")) !== false) {
|
||||
|
||||
$data = array_combine($header, $row);
|
||||
|
||||
DB::table('ms_sekolah')
|
||||
->where('npsn', $data['npsn'])
|
||||
->update([
|
||||
'lat' => $data['lat'],
|
||||
'long' => $data['long'],
|
||||
'rt' => $data['rt'],
|
||||
'rw' => $data['rw'],
|
||||
'kode_kelurahan' => $data['kode_kelurahan'],
|
||||
'alamat_sekolah' => $data['alamat_sekolah'],
|
||||
]);
|
||||
|
||||
// $rows[] = [
|
||||
// 'npsn' => $data['npsn'],
|
||||
// 'lat' => $data['lat'],
|
||||
// 'long' => $data['long'],
|
||||
// 'rt' => $data['rt'],
|
||||
// 'rw' => $data['rw'],
|
||||
// 'kode_kelurahan' => $data['kode_kelurahan'],
|
||||
// 'alamat_sekolah' => $data['alamat_sekolah'] ?? null,
|
||||
// ];
|
||||
|
||||
// // batch 500
|
||||
// if (count($rows) >= 500) {
|
||||
|
||||
// DB::table('ms_sekolah')->upsert(
|
||||
// $rows,
|
||||
// ['npsn'], // unique key
|
||||
// ['lat', 'long', 'alamat_sekolah','rt','rw','kode_kelurahan'] // kolom yg diupdate
|
||||
// );
|
||||
|
||||
// $rows = [];
|
||||
// }
|
||||
}
|
||||
|
||||
// sisa data
|
||||
// if (!empty($rows)) {
|
||||
|
||||
// DB::table('ms_sekolah')->upsert(
|
||||
// $rows,
|
||||
// ['npsn'],
|
||||
// ['lat', 'long', 'alamat_sekolah','rt','rw','kode_kelurahan']
|
||||
// );
|
||||
// }
|
||||
|
||||
fclose($file);
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -14,27 +14,39 @@ return array(
|
|||
'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php',
|
||||
'667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
|
||||
'f598d06aa772fa33d905e87be6398fb1' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
|
||||
'662a729f963d39afe703c9d9b7ab4a8c' => $vendorDir . '/symfony/polyfill-php83/bootstrap.php',
|
||||
'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
|
||||
'662a729f963d39afe703c9d9b7ab4a8c' => $vendorDir . '/symfony/polyfill-php83/bootstrap.php',
|
||||
'7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
|
||||
'37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
|
||||
'b067bc7112e384b61c701452d53a14a8' => $vendorDir . '/mtdowling/jmespath.php/src/JmesPath.php',
|
||||
'35a6ad97d21e794e7e22a17d806652e4' => $vendorDir . '/nunomaduro/termwind/src/Functions.php',
|
||||
'3bd81c9b8fcc150b69d8b63b4d2ccf23' => $vendorDir . '/spatie/flare-client-php/src/helpers.php',
|
||||
'09f6b20656683369174dd6fa83b7e5fb' => $vendorDir . '/symfony/polyfill-uuid/bootstrap.php',
|
||||
'a1105708a18b76903365ca1c4aa61b02' => $vendorDir . '/symfony/translation/Resources/functions.php',
|
||||
'2cffec82183ee1cea088009cef9a6fc3' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php',
|
||||
'37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
|
||||
'47e1160838b5e5a10346ac4084b58c23' => $vendorDir . '/laravel/prompts/src/helpers.php',
|
||||
'b067bc7112e384b61c701452d53a14a8' => $vendorDir . '/mtdowling/jmespath.php/src/JmesPath.php',
|
||||
'e39a8b23c42d4e1452234d762b03835a' => $vendorDir . '/ramsey/uuid/src/functions.php',
|
||||
'3bd81c9b8fcc150b69d8b63b4d2ccf23' => $vendorDir . '/spatie/flare-client-php/src/helpers.php',
|
||||
'8a9dc1de0ca7e01f3e08231539562f61' => $vendorDir . '/aws/aws-sdk-php/src/functions.php',
|
||||
'29ffe97919493792170d47eb03a68da9' => $vendorDir . '/blade-ui-kit/blade-icons/src/helpers.php',
|
||||
<<<<<<< HEAD
|
||||
'47e1160838b5e5a10346ac4084b58c23' => $vendorDir . '/laravel/prompts/src/helpers.php',
|
||||
'6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
|
||||
'801c31d8ed748cfa537fa45402288c95' => $vendorDir . '/psy/psysh/src/functions.php',
|
||||
'e39a8b23c42d4e1452234d762b03835a' => $vendorDir . '/ramsey/uuid/src/functions.php',
|
||||
=======
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'476ca15b8d69b04665cd879be9cb4c68' => $vendorDir . '/laravel/framework/src/Illuminate/Collections/functions.php',
|
||||
'265b4faa2b3a9766332744949e83bf97' => $vendorDir . '/laravel/framework/src/Illuminate/Collections/helpers.php',
|
||||
'c7a3c339e7e14b60e06a2d7fcce9476b' => $vendorDir . '/laravel/framework/src/Illuminate/Events/functions.php',
|
||||
'f57d353b41eb2e234b26064d63d8c5dd' => $vendorDir . '/laravel/framework/src/Illuminate/Filesystem/functions.php',
|
||||
'f0906e6318348a765ffb6eb24e0d0938' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/helpers.php',
|
||||
'58571171fd5812e6e447dce228f52f4d' => $vendorDir . '/laravel/framework/src/Illuminate/Support/helpers.php',
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
'6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
|
||||
'801c31d8ed748cfa537fa45402288c95' => $vendorDir . '/psy/psysh/src/functions.php',
|
||||
'062a54fe8f6f91078b197f2922521dd9' => $vendorDir . '/laravel/pint/overrides/Runner/Parallel/ProcessFactory.php',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'c72349b1fe8d0deeedd3a52e8aa814d8' => $vendorDir . '/mockery/mockery/library/helpers.php',
|
||||
'ce9671a430e4846b44e1c68c7611f9f5' => $vendorDir . '/mockery/mockery/library/Mockery.php',
|
||||
'a1cfe24d14977df6878b9bf804af2d1c' => $vendorDir . '/nunomaduro/collision/src/Adapters/Phpunit/Autoload.php',
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@ $baseDir = dirname($vendorDir);
|
|||
|
||||
return array(
|
||||
'voku\\' => array($vendorDir . '/voku/portable-ascii/src/voku'),
|
||||
'bfinlay\\SpreadsheetSeeder\\' => array($vendorDir . '/bfinlay/laravel-excel-seeder/src'),
|
||||
'ZipStream\\' => array($vendorDir . '/maennchen/zipstream-php/src'),
|
||||
'Whoops\\' => array($vendorDir . '/filp/whoops/src/Whoops'),
|
||||
'TijsVerkoyen\\CssToInlineStyles\\' => array($vendorDir . '/tijsverkoyen/css-to-inline-styles/src'),
|
||||
'Tests\\' => array($baseDir . '/tests'),
|
||||
|
|
@ -55,12 +57,19 @@ return array(
|
|||
'Psr\\EventDispatcher\\' => array($vendorDir . '/psr/event-dispatcher/src'),
|
||||
'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
|
||||
'Psr\\Clock\\' => array($vendorDir . '/psr/clock/src'),
|
||||
'Psr\\Cache\\' => array($vendorDir . '/psr/cache/src'),
|
||||
'PhpParser\\' => array($vendorDir . '/nikic/php-parser/lib/PhpParser'),
|
||||
'PhpOption\\' => array($vendorDir . '/phpoption/phpoption/src/PhpOption'),
|
||||
'PhpOffice\\PhpSpreadsheet\\' => array($vendorDir . '/phpoffice/phpspreadsheet/src/PhpSpreadsheet'),
|
||||
'NunoMaduro\\Collision\\' => array($vendorDir . '/nunomaduro/collision/src'),
|
||||
<<<<<<< HEAD
|
||||
'Nette\\' => array($vendorDir . '/nette/schema/src', $vendorDir . '/nette/utils/src'),
|
||||
=======
|
||||
'Nette\\' => array($vendorDir . '/nette/utils/src', $vendorDir . '/nette/schema/src'),
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'),
|
||||
'Mockery\\' => array($vendorDir . '/mockery/mockery/library/Mockery'),
|
||||
'Matrix\\' => array($vendorDir . '/markbaker/matrix/classes/src'),
|
||||
'Masterminds\\' => array($vendorDir . '/masterminds/html5/src'),
|
||||
'MallardDuck\\LucideIcons\\' => array($vendorDir . '/mallardduck/blade-lucide-icons/src'),
|
||||
'League\\MimeTypeDetection\\' => array($vendorDir . '/league/mime-type-detection/src'),
|
||||
|
|
@ -89,12 +98,21 @@ return array(
|
|||
'Egulias\\EmailValidator\\' => array($vendorDir . '/egulias/email-validator/src'),
|
||||
'Dotenv\\' => array($vendorDir . '/vlucas/phpdotenv/src'),
|
||||
'Doctrine\\Inflector\\' => array($vendorDir . '/doctrine/inflector/src'),
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
'Doctrine\\Deprecations\\' => array($vendorDir . '/doctrine/deprecations/src'),
|
||||
'Doctrine\\DBAL\\' => array($vendorDir . '/doctrine/dbal/src'),
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'Doctrine\\Common\\Lexer\\' => array($vendorDir . '/doctrine/lexer/src'),
|
||||
'Doctrine\\Common\\' => array($vendorDir . '/doctrine/event-manager/src'),
|
||||
'Dflydev\\DotAccessData\\' => array($vendorDir . '/dflydev/dot-access-data/src'),
|
||||
'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'),
|
||||
'Database\\Seeders\\' => array($baseDir . '/database/seeders', $vendorDir . '/laravel/pint/database/seeders'),
|
||||
'Database\\Factories\\' => array($baseDir . '/database/factories', $vendorDir . '/laravel/pint/database/factories'),
|
||||
'Cron\\' => array($vendorDir . '/dragonmantank/cron-expression/src/Cron'),
|
||||
'Composer\\Semver\\' => array($vendorDir . '/composer/semver/src'),
|
||||
'Composer\\Pcre\\' => array($vendorDir . '/composer/pcre/src'),
|
||||
'Complex\\' => array($vendorDir . '/markbaker/complex/classes/src'),
|
||||
'Carbon\\Doctrine\\' => array($vendorDir . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine'),
|
||||
'Carbon\\' => array($vendorDir . '/nesbot/carbon/src/Carbon'),
|
||||
'Brick\\Math\\' => array($vendorDir . '/brick/math/src'),
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -3,7 +3,11 @@
|
|||
'name' => 'laravel/laravel',
|
||||
'pretty_version' => 'dev-main',
|
||||
'version' => 'dev-main',
|
||||
<<<<<<< HEAD
|
||||
'reference' => 'a0f578368181dd543e1282a1376187efb5041303',
|
||||
=======
|
||||
'reference' => 'a6b007189b5902da881873196f649d4bdf55dd0d',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'project',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
|
|
@ -28,6 +32,15 @@
|
|||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'bfinlay/laravel-excel-seeder' => array(
|
||||
'pretty_version' => 'v3.4.3',
|
||||
'version' => '3.4.3.0',
|
||||
'reference' => '4ccb1b124e31133a49f8a6d21e33054c17265767',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../bfinlay/laravel-excel-seeder',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'blade-ui-kit/blade-icons' => array(
|
||||
'pretty_version' => '1.9.0',
|
||||
'version' => '1.9.0.0',
|
||||
|
|
@ -55,6 +68,24 @@
|
|||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'composer/pcre' => array(
|
||||
'pretty_version' => '3.3.2',
|
||||
'version' => '3.3.2.0',
|
||||
'reference' => 'b2bed4734f0cc156ee1fe9c0da2550420d99a21e',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/./pcre',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'composer/semver' => array(
|
||||
'pretty_version' => '3.4.4',
|
||||
'version' => '3.4.4.0',
|
||||
'reference' => '198166618906cb2de69b95d7d47e5fa8aa1b2b95',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/./semver',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'cordoval/hamcrest-php' => array(
|
||||
'dev_requirement' => true,
|
||||
'replaced' => array(
|
||||
|
|
@ -76,6 +107,33 @@
|
|||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'doctrine/dbal' => array(
|
||||
'pretty_version' => '3.10.5',
|
||||
'version' => '3.10.5.0',
|
||||
'reference' => '95d84866bf3c04b2ddca1df7c049714660959aef',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../doctrine/dbal',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'doctrine/deprecations' => array(
|
||||
'pretty_version' => '1.1.6',
|
||||
'version' => '1.1.6.0',
|
||||
'reference' => 'd4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../doctrine/deprecations',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'doctrine/event-manager' => array(
|
||||
'pretty_version' => '2.1.1',
|
||||
'version' => '2.1.1.0',
|
||||
'reference' => 'dda33921b198841ca8dbad2eaa5d4d34769d18cf',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../doctrine/event-manager',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'doctrine/inflector' => array(
|
||||
'pretty_version' => '2.1.0',
|
||||
'version' => '2.1.0.0',
|
||||
|
|
@ -112,6 +170,15 @@
|
|||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'ezyang/htmlpurifier' => array(
|
||||
'pretty_version' => 'v4.19.0',
|
||||
'version' => '4.19.0.0',
|
||||
'reference' => 'b287d2a16aceffbf6e0295559b39662612b77fcf',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../ezyang/htmlpurifier',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'fakerphp/faker' => array(
|
||||
'pretty_version' => 'v1.24.1',
|
||||
'version' => '1.24.1.0',
|
||||
|
|
@ -409,7 +476,11 @@
|
|||
'laravel/laravel' => array(
|
||||
'pretty_version' => 'dev-main',
|
||||
'version' => 'dev-main',
|
||||
<<<<<<< HEAD
|
||||
'reference' => 'a0f578368181dd543e1282a1376187efb5041303',
|
||||
=======
|
||||
'reference' => 'a6b007189b5902da881873196f649d4bdf55dd0d',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'project',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
|
|
@ -532,6 +603,15 @@
|
|||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'maennchen/zipstream-php' => array(
|
||||
'pretty_version' => '3.1.2',
|
||||
'version' => '3.1.2.0',
|
||||
'reference' => 'aeadcf5c412332eb426c0f9b4485f6accba2a99f',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../maennchen/zipstream-php',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'mallardduck/blade-lucide-icons' => array(
|
||||
'pretty_version' => '1.26.11',
|
||||
'version' => '1.26.11.0',
|
||||
|
|
@ -541,6 +621,24 @@
|
|||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'markbaker/complex' => array(
|
||||
'pretty_version' => '3.0.2',
|
||||
'version' => '3.0.2.0',
|
||||
'reference' => '95c56caa1cf5c766ad6d65b6344b807c1e8405b9',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../markbaker/complex',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'markbaker/matrix' => array(
|
||||
'pretty_version' => '3.0.1',
|
||||
'version' => '3.0.1.0',
|
||||
'reference' => '728434227fe21be27ff6d86621a1b13107a2562c',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../markbaker/matrix',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'masterminds/html5' => array(
|
||||
'pretty_version' => '2.10.0',
|
||||
'version' => '2.10.0.0',
|
||||
|
|
@ -664,6 +762,15 @@
|
|||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'phpoffice/phpspreadsheet' => array(
|
||||
'pretty_version' => '1.30.4',
|
||||
'version' => '1.30.4.0',
|
||||
'reference' => '02970383cc12e7bf0bc0707ea6e2e8ed23a7aec9',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../phpoffice/phpspreadsheet',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'phpoption/phpoption' => array(
|
||||
'pretty_version' => '1.9.5',
|
||||
'version' => '1.9.5.0',
|
||||
|
|
@ -727,6 +834,15 @@
|
|||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'psr/cache' => array(
|
||||
'pretty_version' => '3.0.0',
|
||||
'version' => '3.0.0.0',
|
||||
'reference' => 'aa5030cfa5405eccfdcb1083ce040c2cb8d253bf',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../psr/cache',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'psr/clock' => array(
|
||||
'pretty_version' => '1.0.0',
|
||||
'version' => '1.0.0.0',
|
||||
|
|
@ -1071,27 +1187,39 @@
|
|||
'dev_requirement' => true,
|
||||
),
|
||||
'symfony/console' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v6.4.36',
|
||||
'version' => '6.4.36.0',
|
||||
'reference' => '9f481cfb580db8bcecc9b2d4c63f3e13df022ad5',
|
||||
=======
|
||||
'pretty_version' => 'v6.4.37',
|
||||
'version' => '6.4.37.0',
|
||||
'reference' => '7bbcaf3fdb1e18fa42a7f0b84a10d091c10548f5',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/console',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/css-selector' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v7.4.8',
|
||||
'version' => '7.4.8.0',
|
||||
'reference' => 'b055f228a4178a1d6774909903905e3475f3eac8',
|
||||
=======
|
||||
'pretty_version' => 'v7.4.9',
|
||||
'version' => '7.4.9.0',
|
||||
'reference' => 'b75663ed96cf4756e28e3105476f220f92886cc4',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/css-selector',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/deprecation-contracts' => array(
|
||||
'pretty_version' => 'v3.6.0',
|
||||
'version' => '3.6.0.0',
|
||||
'reference' => '63afe740e99a13ba87ec199bb07bbdee937a5b62',
|
||||
'pretty_version' => 'v3.7.0',
|
||||
'version' => '3.7.0.0',
|
||||
'reference' => '50f59d1f3ca46d41ac911f97a78626b6756af35b',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
|
||||
'aliases' => array(),
|
||||
|
|
@ -1116,18 +1244,24 @@
|
|||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/event-dispatcher' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v7.4.8',
|
||||
'version' => '7.4.8.0',
|
||||
'reference' => 'f57b899fa736fd71121168ef268f23c206083f0a',
|
||||
=======
|
||||
'pretty_version' => 'v7.4.9',
|
||||
'version' => '7.4.9.0',
|
||||
'reference' => 'e4a2e29753c7801f7a8340e066cfa788f3bc8101',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/event-dispatcher',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/event-dispatcher-contracts' => array(
|
||||
'pretty_version' => 'v3.6.0',
|
||||
'version' => '3.6.0.0',
|
||||
'reference' => '59eb412e93815df44f05f342958efa9f46b1e586',
|
||||
'pretty_version' => 'v3.7.0',
|
||||
'version' => '3.7.0.0',
|
||||
'reference' => 'ccba7060602b7fed0b03c85bf025257f76d9ef32',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/event-dispatcher-contracts',
|
||||
'aliases' => array(),
|
||||
|
|
@ -1167,9 +1301,15 @@
|
|||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/http-kernel' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v6.4.36',
|
||||
'version' => '6.4.36.0',
|
||||
'reference' => '4087ec02119de450e9ebb60806d69c6bb8c6e468',
|
||||
=======
|
||||
'pretty_version' => 'v6.4.38',
|
||||
'version' => '6.4.38.0',
|
||||
'reference' => '769c1ee766d6c327176f4e3bdaad58f521193abd',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/http-kernel',
|
||||
'aliases' => array(),
|
||||
|
|
@ -1185,35 +1325,58 @@
|
|||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/mime' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v6.4.36',
|
||||
'version' => '6.4.36.0',
|
||||
'reference' => '9c31726137c70798f815fb98293ffb8a2a47694c',
|
||||
=======
|
||||
'pretty_version' => 'v6.4.37',
|
||||
'version' => '6.4.37.0',
|
||||
'reference' => '330077bc7fbe314758aff62834b758d06ac6d260',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/mime',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-ctype' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v1.33.0',
|
||||
'version' => '1.33.0.0',
|
||||
'reference' => 'a3cc8b044a6ea513310cbd48ef7333b384945638',
|
||||
=======
|
||||
'pretty_version' => 'v1.37.0',
|
||||
'version' => '1.37.0.0',
|
||||
'reference' => '141046a8f9477948ff284fa65be2095baafb94f2',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-intl-grapheme' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v1.33.0',
|
||||
'version' => '1.33.0.0',
|
||||
'reference' => '380872130d3a5dd3ace2f4010d95125fde5d5c70',
|
||||
=======
|
||||
'pretty_version' => 'v1.37.0',
|
||||
'version' => '1.37.0.0',
|
||||
'reference' => '4864388bfbd3001ce88e234fab652acd91fdc57e',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-intl-grapheme',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-intl-idn' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v1.33.0',
|
||||
'version' => '1.33.0.0',
|
||||
=======
|
||||
'pretty_version' => 'v1.37.0',
|
||||
'version' => '1.37.0.0',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'reference' => '9614ac4d8061dc257ecc64cba1b140873dce8ad3',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-intl-idn',
|
||||
|
|
@ -1221,8 +1384,13 @@
|
|||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-intl-normalizer' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v1.33.0',
|
||||
'version' => '1.33.0.0',
|
||||
=======
|
||||
'pretty_version' => 'v1.37.0',
|
||||
'version' => '1.37.0.0',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'reference' => '3833d7255cc303546435cb650316bff708a1c75c',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-intl-normalizer',
|
||||
|
|
@ -1230,36 +1398,60 @@
|
|||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-mbstring' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v1.33.0',
|
||||
'version' => '1.33.0.0',
|
||||
'reference' => '6d857f4d76bd4b343eac26d6b539585d2bc56493',
|
||||
=======
|
||||
'pretty_version' => 'v1.37.0',
|
||||
'version' => '1.37.0.0',
|
||||
'reference' => '6a21eb99c6973357967f6ce3708cd55a6bec6315',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-mbstring',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-php80' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v1.33.0',
|
||||
'version' => '1.33.0.0',
|
||||
'reference' => '0cc9dd0f17f61d8131e7df6b84bd344899fe2608',
|
||||
=======
|
||||
'pretty_version' => 'v1.37.0',
|
||||
'version' => '1.37.0.0',
|
||||
'reference' => 'dfb55726c3a76ea3b6459fcfda1ec2d80a682411',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-php80',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-php83' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v1.33.0',
|
||||
'version' => '1.33.0.0',
|
||||
'reference' => '17f6f9a6b1735c0f163024d959f700cfbc5155e5',
|
||||
=======
|
||||
'pretty_version' => 'v1.37.0',
|
||||
'version' => '1.37.0.0',
|
||||
'reference' => '3600c2cb22399e25bb226e4a135ce91eeb2a6149',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-php83',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-uuid' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v1.33.0',
|
||||
'version' => '1.33.0.0',
|
||||
'reference' => '21533be36c24be3f4b1669c4725c7d1d2bab4ae2',
|
||||
=======
|
||||
'pretty_version' => 'v1.37.0',
|
||||
'version' => '1.37.0.0',
|
||||
'reference' => '26dfec253c4cf3e51b541b52ddf7e42cb0908e94',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-uuid',
|
||||
'aliases' => array(),
|
||||
|
|
@ -1275,18 +1467,30 @@
|
|||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/routing' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v6.4.34',
|
||||
'version' => '6.4.34.0',
|
||||
'reference' => '5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47',
|
||||
=======
|
||||
'pretty_version' => 'v6.4.37',
|
||||
'version' => '6.4.37.0',
|
||||
'reference' => '48035d186798d27d375d95aad37db8fe097e4048',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/routing',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/service-contracts' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v3.6.1',
|
||||
'version' => '3.6.1.0',
|
||||
'reference' => '45112560a3ba2d715666a509a0bc9521d10b6c43',
|
||||
=======
|
||||
'pretty_version' => 'v3.7.0',
|
||||
'version' => '3.7.0.0',
|
||||
'reference' => 'd25d82433a80eba6aa0e6c24b61d7370d99e444a',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/service-contracts',
|
||||
'aliases' => array(),
|
||||
|
|
@ -1302,18 +1506,30 @@
|
|||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/translation' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v6.4.34',
|
||||
'version' => '6.4.34.0',
|
||||
'reference' => 'd07d117db41341511671b0a1a2be48f2772189ce',
|
||||
=======
|
||||
'pretty_version' => 'v6.4.38',
|
||||
'version' => '6.4.38.0',
|
||||
'reference' => 'afaa31b0c12d9a659eed1ea97f268a614cc1299c',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/translation',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/translation-contracts' => array(
|
||||
<<<<<<< HEAD
|
||||
'pretty_version' => 'v3.6.1',
|
||||
'version' => '3.6.1.0',
|
||||
'reference' => '65a8bc82080447fae78373aa10f8d13b38338977',
|
||||
=======
|
||||
'pretty_version' => 'v3.7.0',
|
||||
'version' => '3.7.0.0',
|
||||
'reference' => '0ab302977a952b42fd51475c4ebac81f8da0a95d',
|
||||
>>>>>>> 5cab2eb4fb2aa56f22867db0c29ad2b66de3663c
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/translation-contracts',
|
||||
'aliases' => array(),
|
||||
|
|
@ -1380,9 +1596,9 @@
|
|||
'dev_requirement' => false,
|
||||
),
|
||||
'voku/portable-ascii' => array(
|
||||
'pretty_version' => '2.0.3',
|
||||
'version' => '2.0.3.0',
|
||||
'reference' => 'b1d923f88091c6bf09699efcd7c8a1b1bfd7351d',
|
||||
'pretty_version' => '2.1.1',
|
||||
'version' => '2.1.1.0',
|
||||
'reference' => '8e1051fe39379367aecf014f41744ce7539a856f',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../voku/portable-ascii',
|
||||
'aliases' => array(),
|
||||
|
|
|
|||
Loading…
Reference in New Issue