Browse Source

Create configuration files for benchmark kit

tags/4.2.2.1
Steevan BARBOYON 7 years ago
parent
commit
5edd0272a3

+ 6
- 0
.phpbenchmarks/codeLink.sh View File

1
+#!/usr/bin/env bash
2
+
3
+declare -A codeLinks=(
4
+    [controller]="http://www.test.com"
5
+    [route]="http://"
6
+)

+ 18
- 0
.phpbenchmarks/configuration.sh View File

1
+#!/usr/bin/env bash
2
+
3
+readonly PHPBENCHMARKS_PHP_5_6_ENABLED=false
4
+readonly PHPBENCHMARKS_PHP_7_0_ENABLED=false
5
+readonly PHPBENCHMARKS_PHP_7_1_ENABLED=true
6
+readonly PHPBENCHMARKS_PHP_7_2_ENABLED=true
7
+readonly PHPBENCHMARKS_PHP_7_3_ENABLED=true
8
+
9
+readonly PHPBENCHMARKS_NAME="Symfony"
10
+readonly PHPBENCHMARKS_SLUG="symfony"
11
+
12
+readonly PHPBENCHMARKS_BENCHMARK_URL="/benchmark/helloworld"
13
+
14
+readonly PHPBENCHMARKS_MAIN_REPOSITORY="symfony/framework-bundle"
15
+
16
+readonly PHPBENCHMARKS_MAJOR_VERSION=4
17
+readonly PHPBENCHMARKS_MINOR_VERSION=2
18
+readonly PHPBENCHMARKS_BUGFIX_VERSION=2

init_benchmark.sh → .phpbenchmarks/initBenchmark.sh View File

1
 #!/usr/bin/env bash
1
 #!/usr/bin/env bash
2
 
2
 
3
 function clearCacheAndLogs() {
3
 function clearCacheAndLogs() {
4
-    sudo /bin/rm -rf var/cache/*
4
+    rm -rf var/cache/*
5
     [ "$?" != "0" ] && exit 1
5
     [ "$?" != "0" ] && exit 1
6
-    sudo /bin/chmod -R 777 var/cache
6
+    chmod -R 777 var/cache
7
     [ "$?" != "0" ] && exit 1
7
     [ "$?" != "0" ] && exit 1
8
 
8
 
9
-    sudo /bin/rm -rf var/log/*
9
+    rm -rf var/log/*
10
     [ "$?" != "0" ] && exit 1
10
     [ "$?" != "0" ] && exit 1
11
-    sudo /bin/chmod -R 777 var/log
11
+    chmod -R 777 var/log
12
     [ "$?" != "0" ] && exit 1
12
     [ "$?" != "0" ] && exit 1
13
 }
13
 }
14
 
14
 
15
-function init() {
16
-    export APP_ENV='prod'
17
-
18
-    sudo /bin/rm -rf vendor/
15
+function initBenchmark() {
19
     clearCacheAndLogs
16
     clearCacheAndLogs
20
 
17
 
21
     composer install --no-dev --classmap-authoritative
18
     composer install --no-dev --classmap-authoritative
23
 
20
 
24
     clearCacheAndLogs
21
     clearCacheAndLogs
25
     php bin/console cache:warmup
22
     php bin/console cache:warmup
23
+    [ "$?" != "0" ] && exit 1
26
 
24
 
27
     return 0
25
     return 0
28
 }
26
 }

+ 1
- 0
.phpbenchmarks/responseBody/responseBody.txt View File

1
+Hello World !

+ 19
- 0
.phpbenchmarks/vhost.conf View File

1
+server {
2
+    listen 80;
3
+    server_name ____HOST____;
4
+    root ____PROJECT_DIR____/public;
5
+    location / {
6
+        try_files $uri /index.php$is_args$args;
7
+    }
8
+    location ~ ^/(index).php(/|$) {
9
+        fastcgi_pass unix:/run/php/____PHP_FPM_SOCK____;
10
+        fastcgi_split_path_info ^(.+.php)(/.*)$;
11
+        include fastcgi_params;
12
+        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
13
+        fastcgi_param HTTPS off;
14
+        fastcgi_param APP_ENV prod;
15
+        fastcgi_param APP_DEBUG false;
16
+    }
17
+    error_log /var/log/nginx/benchmark_error.log;
18
+    access_log /var/log/nginx/benchmark_access.log;
19
+}

+ 14
- 9
README.md View File

6
 
6
 
7
 ## What is www.phpbenchmarks.com ?
7
 ## What is www.phpbenchmarks.com ?
8
 
8
 
9
-You will find lot of benchmarks for PHP frameworks and template engines.
9
+You will find lot of benchmarks for PHP frameworks and template engines on [phpbenchmarks.com](http://www.phpbenchmarks.com).
10
 
10
 
11
-You can compare results between Apache Bench and Siege, and PHP 5.6 to 7.3.
11
+Benchmarks results are available for Apache Bench and Siege, and PHP 5.6 to 7.3.
12
+
13
+Our benchmarking protocol is available on [benchmarking protocol page](http://www.phpbenchmarks.com/en/documentation/benchmarking-protocol).
12
 
14
 
13
 ## What is this repository ?
15
 ## What is this repository ?
14
 
16
 
15
-It's benchmark common code for Symfony benchmarks.
17
+It contains Symfony installation `only`.
18
+To reuse code between minor versions, features for benchmarks are not coded in this repository
19
+but in [phpbenchmarks/symfony-common](https://github.com/phpbenchmarks/symfony-common) repository.
16
 
20
 
17
-Switch branch to select your Symfony major version and benchmark you want to see.
21
+Switch branch to select version and benchmark you want to see.
18
 
22
 
19
-See all Symfony benchmarked versions on [phpbenchmarks/symfony](https://github.com/phpbenchmarks/symfony).
23
+## Benchmarks
20
 
24
 
21
-You can find how we benchmark on [phpbenchmarks.com](http://www.phpbenchmarks.com/en/benchmark-protocol.html).
25
+You can find Symfony 4.2 benchmarks results on
26
+[benchmarks results page](http://www.phpbenchmarks.com/en/benchmark/symfony/4.2).
22
 
27
 
23
-## Benchmarks
28
+See all Symfony benchmarked versions on [select version page](http://www.phpbenchmarks.com/en/benchmark/symfony/version).
24
 
29
 
25
-You can find all Symfony benchmarks results on [phpbenchmarks.com](http://www.phpbenchmarks.com/en/benchmark/symfony.html).
30
+## Community
26
 
31
 
27
-Scores are too low ? Do not hesitate to create a pull request, and ask a new benchmark !
32
+Go to [community page](http://www.phpbenchmarks.com/en/community) to see the Hall of fame, or download the benchmark kit to add your code!

+ 4
- 4
composer.json View File

6
         "php": "^7.1.3",
6
         "php": "^7.1.3",
7
         "ext-ctype": "*",
7
         "ext-ctype": "*",
8
         "ext-iconv": "*",
8
         "ext-iconv": "*",
9
-        "symfony/console": "4.2.*",
9
+        "symfony/console": "4.2.2",
10
         "symfony/flex": "^1.1",
10
         "symfony/flex": "^1.1",
11
-        "symfony/framework-bundle": "4.2.*",
12
-        "symfony/yaml": "4.2.*",
11
+        "symfony/framework-bundle": "4.2.2",
12
+        "symfony/yaml": "4.2.2",
13
         "phpbenchmarks/symfony-common": "4.1.1"
13
         "phpbenchmarks/symfony-common": "4.1.1"
14
     },
14
     },
15
     "config": {
15
     "config": {
50
     "extra": {
50
     "extra": {
51
         "symfony": {
51
         "symfony": {
52
             "allow-contrib": false,
52
             "allow-contrib": false,
53
-            "require": "4.2.*"
53
+            "require": "4.2.2"
54
         }
54
         }
55
     }
55
     }
56
 }
56
 }

+ 71
- 72
composer.lock.php7.1 View File

4
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
4
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
         "This file is @generated automatically"
5
         "This file is @generated automatically"
6
     ],
6
     ],
7
-    "content-hash": "31756b6cbd5726ef455ddb006a835ff4",
7
+    "content-hash": "8803f5dab116915a28e759ec23ab3123",
8
     "packages": [
8
     "packages": [
9
         {
9
         {
10
             "name": "phpbenchmarks/symfony-common",
10
             "name": "phpbenchmarks/symfony-common",
224
         },
224
         },
225
         {
225
         {
226
             "name": "symfony/cache",
226
             "name": "symfony/cache",
227
-            "version": "v4.2.1",
227
+            "version": "v4.2.2",
228
             "source": {
228
             "source": {
229
                 "type": "git",
229
                 "type": "git",
230
                 "url": "https://github.com/symfony/cache.git",
230
                 "url": "https://github.com/symfony/cache.git",
231
-                "reference": "5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41"
231
+                "reference": "dd223d4bb9a2f9a4b4992851800b349739c40860"
232
             },
232
             },
233
             "dist": {
233
             "dist": {
234
                 "type": "zip",
234
                 "type": "zip",
235
-                "url": "https://api.github.com/repos/symfony/cache/zipball/5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41",
236
-                "reference": "5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41",
235
+                "url": "https://api.github.com/repos/symfony/cache/zipball/dd223d4bb9a2f9a4b4992851800b349739c40860",
236
+                "reference": "dd223d4bb9a2f9a4b4992851800b349739c40860",
237
                 "shasum": ""
237
                 "shasum": ""
238
             },
238
             },
239
             "require": {
239
             "require": {
297
                 "caching",
297
                 "caching",
298
                 "psr6"
298
                 "psr6"
299
             ],
299
             ],
300
-            "time": "2018-12-06T11:00:08+00:00"
300
+            "time": "2019-01-03T09:07:35+00:00"
301
         },
301
         },
302
         {
302
         {
303
             "name": "symfony/config",
303
             "name": "symfony/config",
304
-            "version": "v4.2.1",
304
+            "version": "v4.2.2",
305
             "source": {
305
             "source": {
306
                 "type": "git",
306
                 "type": "git",
307
                 "url": "https://github.com/symfony/config.git",
307
                 "url": "https://github.com/symfony/config.git",
308
-                "reference": "005d9a083d03f588677d15391a716b1ac9b887c0"
308
+                "reference": "a7a7d0a0244cfc82f040729ccf769e6cf55a78fb"
309
             },
309
             },
310
             "dist": {
310
             "dist": {
311
                 "type": "zip",
311
                 "type": "zip",
312
-                "url": "https://api.github.com/repos/symfony/config/zipball/005d9a083d03f588677d15391a716b1ac9b887c0",
313
-                "reference": "005d9a083d03f588677d15391a716b1ac9b887c0",
312
+                "url": "https://api.github.com/repos/symfony/config/zipball/a7a7d0a0244cfc82f040729ccf769e6cf55a78fb",
313
+                "reference": "a7a7d0a0244cfc82f040729ccf769e6cf55a78fb",
314
                 "shasum": ""
314
                 "shasum": ""
315
             },
315
             },
316
             "require": {
316
             "require": {
360
             ],
360
             ],
361
             "description": "Symfony Config Component",
361
             "description": "Symfony Config Component",
362
             "homepage": "https://symfony.com",
362
             "homepage": "https://symfony.com",
363
-            "time": "2018-11-30T22:21:14+00:00"
363
+            "time": "2019-01-03T09:07:35+00:00"
364
         },
364
         },
365
         {
365
         {
366
             "name": "symfony/console",
366
             "name": "symfony/console",
367
-            "version": "v4.2.1",
367
+            "version": "v4.2.2",
368
             "source": {
368
             "source": {
369
                 "type": "git",
369
                 "type": "git",
370
                 "url": "https://github.com/symfony/console.git",
370
                 "url": "https://github.com/symfony/console.git",
371
-                "reference": "4dff24e5d01e713818805c1862d2e3f901ee7dd0"
371
+                "reference": "b0a03c1bb0fcbe288629956cf2f1dd3f1dc97522"
372
             },
372
             },
373
             "dist": {
373
             "dist": {
374
                 "type": "zip",
374
                 "type": "zip",
375
-                "url": "https://api.github.com/repos/symfony/console/zipball/4dff24e5d01e713818805c1862d2e3f901ee7dd0",
376
-                "reference": "4dff24e5d01e713818805c1862d2e3f901ee7dd0",
375
+                "url": "https://api.github.com/repos/symfony/console/zipball/b0a03c1bb0fcbe288629956cf2f1dd3f1dc97522",
376
+                "reference": "b0a03c1bb0fcbe288629956cf2f1dd3f1dc97522",
377
                 "shasum": ""
377
                 "shasum": ""
378
             },
378
             },
379
             "require": {
379
             "require": {
429
             ],
429
             ],
430
             "description": "Symfony Console Component",
430
             "description": "Symfony Console Component",
431
             "homepage": "https://symfony.com",
431
             "homepage": "https://symfony.com",
432
-            "time": "2018-11-27T07:40:44+00:00"
432
+            "time": "2019-01-04T15:13:53+00:00"
433
         },
433
         },
434
         {
434
         {
435
             "name": "symfony/contracts",
435
             "name": "symfony/contracts",
501
         },
501
         },
502
         {
502
         {
503
             "name": "symfony/debug",
503
             "name": "symfony/debug",
504
-            "version": "v4.2.1",
504
+            "version": "v4.2.2",
505
             "source": {
505
             "source": {
506
                 "type": "git",
506
                 "type": "git",
507
                 "url": "https://github.com/symfony/debug.git",
507
                 "url": "https://github.com/symfony/debug.git",
508
-                "reference": "e0a2b92ee0b5b934f973d90c2f58e18af109d276"
508
+                "reference": "64cb33c81e37d19b7715d4a6a4d49c1c382066dd"
509
             },
509
             },
510
             "dist": {
510
             "dist": {
511
                 "type": "zip",
511
                 "type": "zip",
512
-                "url": "https://api.github.com/repos/symfony/debug/zipball/e0a2b92ee0b5b934f973d90c2f58e18af109d276",
513
-                "reference": "e0a2b92ee0b5b934f973d90c2f58e18af109d276",
512
+                "url": "https://api.github.com/repos/symfony/debug/zipball/64cb33c81e37d19b7715d4a6a4d49c1c382066dd",
513
+                "reference": "64cb33c81e37d19b7715d4a6a4d49c1c382066dd",
514
                 "shasum": ""
514
                 "shasum": ""
515
             },
515
             },
516
             "require": {
516
             "require": {
553
             ],
553
             ],
554
             "description": "Symfony Debug Component",
554
             "description": "Symfony Debug Component",
555
             "homepage": "https://symfony.com",
555
             "homepage": "https://symfony.com",
556
-            "time": "2018-11-28T18:24:18+00:00"
556
+            "time": "2019-01-03T09:07:35+00:00"
557
         },
557
         },
558
         {
558
         {
559
             "name": "symfony/dependency-injection",
559
             "name": "symfony/dependency-injection",
560
-            "version": "v4.2.1",
560
+            "version": "v4.2.2",
561
             "source": {
561
             "source": {
562
                 "type": "git",
562
                 "type": "git",
563
                 "url": "https://github.com/symfony/dependency-injection.git",
563
                 "url": "https://github.com/symfony/dependency-injection.git",
564
-                "reference": "e4adc57a48d3fa7f394edfffa9e954086d7740e5"
564
+                "reference": "a28dda9df1d5494367454cad91e44751ac53921c"
565
             },
565
             },
566
             "dist": {
566
             "dist": {
567
                 "type": "zip",
567
                 "type": "zip",
568
-                "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e4adc57a48d3fa7f394edfffa9e954086d7740e5",
569
-                "reference": "e4adc57a48d3fa7f394edfffa9e954086d7740e5",
568
+                "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/a28dda9df1d5494367454cad91e44751ac53921c",
569
+                "reference": "a28dda9df1d5494367454cad91e44751ac53921c",
570
                 "shasum": ""
570
                 "shasum": ""
571
             },
571
             },
572
             "require": {
572
             "require": {
626
             ],
626
             ],
627
             "description": "Symfony DependencyInjection Component",
627
             "description": "Symfony DependencyInjection Component",
628
             "homepage": "https://symfony.com",
628
             "homepage": "https://symfony.com",
629
-            "time": "2018-12-02T15:59:36+00:00"
629
+            "time": "2019-01-05T16:37:49+00:00"
630
         },
630
         },
631
         {
631
         {
632
             "name": "symfony/event-dispatcher",
632
             "name": "symfony/event-dispatcher",
633
-            "version": "v4.2.1",
633
+            "version": "v4.2.2",
634
             "source": {
634
             "source": {
635
                 "type": "git",
635
                 "type": "git",
636
                 "url": "https://github.com/symfony/event-dispatcher.git",
636
                 "url": "https://github.com/symfony/event-dispatcher.git",
637
-                "reference": "921f49c3158a276d27c0d770a5a347a3b718b328"
637
+                "reference": "887de6d34c86cf0cb6cbf910afb170cdb743cb5e"
638
             },
638
             },
639
             "dist": {
639
             "dist": {
640
                 "type": "zip",
640
                 "type": "zip",
641
-                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/921f49c3158a276d27c0d770a5a347a3b718b328",
642
-                "reference": "921f49c3158a276d27c0d770a5a347a3b718b328",
641
+                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/887de6d34c86cf0cb6cbf910afb170cdb743cb5e",
642
+                "reference": "887de6d34c86cf0cb6cbf910afb170cdb743cb5e",
643
                 "shasum": ""
643
                 "shasum": ""
644
             },
644
             },
645
             "require": {
645
             "require": {
690
             ],
690
             ],
691
             "description": "Symfony EventDispatcher Component",
691
             "description": "Symfony EventDispatcher Component",
692
             "homepage": "https://symfony.com",
692
             "homepage": "https://symfony.com",
693
-            "time": "2018-12-01T08:52:38+00:00"
693
+            "time": "2019-01-05T16:37:49+00:00"
694
         },
694
         },
695
         {
695
         {
696
             "name": "symfony/filesystem",
696
             "name": "symfony/filesystem",
697
-            "version": "v4.2.1",
697
+            "version": "v4.2.2",
698
             "source": {
698
             "source": {
699
                 "type": "git",
699
                 "type": "git",
700
                 "url": "https://github.com/symfony/filesystem.git",
700
                 "url": "https://github.com/symfony/filesystem.git",
701
-                "reference": "2f4c8b999b3b7cadb2a69390b01af70886753710"
701
+                "reference": "c2ffd9a93f2d6c5be2f68a0aa7953cc229f871f8"
702
             },
702
             },
703
             "dist": {
703
             "dist": {
704
                 "type": "zip",
704
                 "type": "zip",
705
-                "url": "https://api.github.com/repos/symfony/filesystem/zipball/2f4c8b999b3b7cadb2a69390b01af70886753710",
706
-                "reference": "2f4c8b999b3b7cadb2a69390b01af70886753710",
705
+                "url": "https://api.github.com/repos/symfony/filesystem/zipball/c2ffd9a93f2d6c5be2f68a0aa7953cc229f871f8",
706
+                "reference": "c2ffd9a93f2d6c5be2f68a0aa7953cc229f871f8",
707
                 "shasum": ""
707
                 "shasum": ""
708
             },
708
             },
709
             "require": {
709
             "require": {
740
             ],
740
             ],
741
             "description": "Symfony Filesystem Component",
741
             "description": "Symfony Filesystem Component",
742
             "homepage": "https://symfony.com",
742
             "homepage": "https://symfony.com",
743
-            "time": "2018-11-11T19:52:12+00:00"
743
+            "time": "2019-01-03T09:07:35+00:00"
744
         },
744
         },
745
         {
745
         {
746
             "name": "symfony/finder",
746
             "name": "symfony/finder",
747
-            "version": "v4.2.1",
747
+            "version": "v4.2.2",
748
             "source": {
748
             "source": {
749
                 "type": "git",
749
                 "type": "git",
750
                 "url": "https://github.com/symfony/finder.git",
750
                 "url": "https://github.com/symfony/finder.git",
751
-                "reference": "e53d477d7b5c4982d0e1bfd2298dbee63d01441d"
751
+                "reference": "9094d69e8c6ee3fe186a0ec5a4f1401e506071ce"
752
             },
752
             },
753
             "dist": {
753
             "dist": {
754
                 "type": "zip",
754
                 "type": "zip",
755
-                "url": "https://api.github.com/repos/symfony/finder/zipball/e53d477d7b5c4982d0e1bfd2298dbee63d01441d",
756
-                "reference": "e53d477d7b5c4982d0e1bfd2298dbee63d01441d",
755
+                "url": "https://api.github.com/repos/symfony/finder/zipball/9094d69e8c6ee3fe186a0ec5a4f1401e506071ce",
756
+                "reference": "9094d69e8c6ee3fe186a0ec5a4f1401e506071ce",
757
                 "shasum": ""
757
                 "shasum": ""
758
             },
758
             },
759
             "require": {
759
             "require": {
789
             ],
789
             ],
790
             "description": "Symfony Finder Component",
790
             "description": "Symfony Finder Component",
791
             "homepage": "https://symfony.com",
791
             "homepage": "https://symfony.com",
792
-            "time": "2018-11-11T19:52:12+00:00"
792
+            "time": "2019-01-03T09:07:35+00:00"
793
         },
793
         },
794
         {
794
         {
795
             "name": "symfony/flex",
795
             "name": "symfony/flex",
840
         },
840
         },
841
         {
841
         {
842
             "name": "symfony/framework-bundle",
842
             "name": "symfony/framework-bundle",
843
-            "version": "v4.2.1",
843
+            "version": "v4.2.2",
844
             "source": {
844
             "source": {
845
                 "type": "git",
845
                 "type": "git",
846
                 "url": "https://github.com/symfony/framework-bundle.git",
846
                 "url": "https://github.com/symfony/framework-bundle.git",
847
-                "reference": "eb32d67140510f04fe9cc5fb9ad38fda09591db1"
847
+                "reference": "6cba25ea9489d62addb9971a4bdcf42a5639e641"
848
             },
848
             },
849
             "dist": {
849
             "dist": {
850
                 "type": "zip",
850
                 "type": "zip",
851
-                "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/eb32d67140510f04fe9cc5fb9ad38fda09591db1",
852
-                "reference": "eb32d67140510f04fe9cc5fb9ad38fda09591db1",
851
+                "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/6cba25ea9489d62addb9971a4bdcf42a5639e641",
852
+                "reference": "6cba25ea9489d62addb9971a4bdcf42a5639e641",
853
                 "shasum": ""
853
                 "shasum": ""
854
             },
854
             },
855
             "require": {
855
             "require": {
917
             },
917
             },
918
             "suggest": {
918
             "suggest": {
919
                 "ext-apcu": "For best performance of the system caches",
919
                 "ext-apcu": "For best performance of the system caches",
920
-                "phpdocumentor/reflection-docblock": "For display additional information in debug:container",
921
                 "symfony/console": "For using the console commands",
920
                 "symfony/console": "For using the console commands",
922
                 "symfony/form": "For using forms",
921
                 "symfony/form": "For using forms",
923
                 "symfony/property-info": "For using the property_info service",
922
                 "symfony/property-info": "For using the property_info service",
956
             ],
955
             ],
957
             "description": "Symfony FrameworkBundle",
956
             "description": "Symfony FrameworkBundle",
958
             "homepage": "https://symfony.com",
957
             "homepage": "https://symfony.com",
959
-            "time": "2018-12-05T08:06:11+00:00"
958
+            "time": "2019-01-05T16:37:49+00:00"
960
         },
959
         },
961
         {
960
         {
962
             "name": "symfony/http-foundation",
961
             "name": "symfony/http-foundation",
963
-            "version": "v4.2.1",
962
+            "version": "v4.2.2",
964
             "source": {
963
             "source": {
965
                 "type": "git",
964
                 "type": "git",
966
                 "url": "https://github.com/symfony/http-foundation.git",
965
                 "url": "https://github.com/symfony/http-foundation.git",
967
-                "reference": "1b31f3017fadd8cb05cf2c8aebdbf3b12a943851"
966
+                "reference": "a633d422a09242064ba24e44a6e1494c5126de86"
968
             },
967
             },
969
             "dist": {
968
             "dist": {
970
                 "type": "zip",
969
                 "type": "zip",
971
-                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1b31f3017fadd8cb05cf2c8aebdbf3b12a943851",
972
-                "reference": "1b31f3017fadd8cb05cf2c8aebdbf3b12a943851",
970
+                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a633d422a09242064ba24e44a6e1494c5126de86",
971
+                "reference": "a633d422a09242064ba24e44a6e1494c5126de86",
973
                 "shasum": ""
972
                 "shasum": ""
974
             },
973
             },
975
             "require": {
974
             "require": {
1010
             ],
1009
             ],
1011
             "description": "Symfony HttpFoundation Component",
1010
             "description": "Symfony HttpFoundation Component",
1012
             "homepage": "https://symfony.com",
1011
             "homepage": "https://symfony.com",
1013
-            "time": "2018-11-26T10:55:26+00:00"
1012
+            "time": "2019-01-05T16:37:49+00:00"
1014
         },
1013
         },
1015
         {
1014
         {
1016
             "name": "symfony/http-kernel",
1015
             "name": "symfony/http-kernel",
1017
-            "version": "v4.2.1",
1016
+            "version": "v4.2.2",
1018
             "source": {
1017
             "source": {
1019
                 "type": "git",
1018
                 "type": "git",
1020
                 "url": "https://github.com/symfony/http-kernel.git",
1019
                 "url": "https://github.com/symfony/http-kernel.git",
1021
-                "reference": "b39ceffc0388232c309cbde3a7c3685f2ec0a624"
1020
+                "reference": "83de6543328917c18d5498eeb6bb6d36f7aab31b"
1022
             },
1021
             },
1023
             "dist": {
1022
             "dist": {
1024
                 "type": "zip",
1023
                 "type": "zip",
1025
-                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b39ceffc0388232c309cbde3a7c3685f2ec0a624",
1026
-                "reference": "b39ceffc0388232c309cbde3a7c3685f2ec0a624",
1024
+                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/83de6543328917c18d5498eeb6bb6d36f7aab31b",
1025
+                "reference": "83de6543328917c18d5498eeb6bb6d36f7aab31b",
1027
                 "shasum": ""
1026
                 "shasum": ""
1028
             },
1027
             },
1029
             "require": {
1028
             "require": {
1099
             ],
1098
             ],
1100
             "description": "Symfony HttpKernel Component",
1099
             "description": "Symfony HttpKernel Component",
1101
             "homepage": "https://symfony.com",
1100
             "homepage": "https://symfony.com",
1102
-            "time": "2018-12-06T17:39:52+00:00"
1101
+            "time": "2019-01-06T16:19:23+00:00"
1103
         },
1102
         },
1104
         {
1103
         {
1105
             "name": "symfony/polyfill-mbstring",
1104
             "name": "symfony/polyfill-mbstring",
1162
         },
1161
         },
1163
         {
1162
         {
1164
             "name": "symfony/routing",
1163
             "name": "symfony/routing",
1165
-            "version": "v4.2.1",
1164
+            "version": "v4.2.2",
1166
             "source": {
1165
             "source": {
1167
                 "type": "git",
1166
                 "type": "git",
1168
                 "url": "https://github.com/symfony/routing.git",
1167
                 "url": "https://github.com/symfony/routing.git",
1169
-                "reference": "649460207e77da6c545326c7f53618d23ad2c866"
1168
+                "reference": "e69b7a13a0b58af378a49b49dd7084462de16cee"
1170
             },
1169
             },
1171
             "dist": {
1170
             "dist": {
1172
                 "type": "zip",
1171
                 "type": "zip",
1173
-                "url": "https://api.github.com/repos/symfony/routing/zipball/649460207e77da6c545326c7f53618d23ad2c866",
1174
-                "reference": "649460207e77da6c545326c7f53618d23ad2c866",
1172
+                "url": "https://api.github.com/repos/symfony/routing/zipball/e69b7a13a0b58af378a49b49dd7084462de16cee",
1173
+                "reference": "e69b7a13a0b58af378a49b49dd7084462de16cee",
1175
                 "shasum": ""
1174
                 "shasum": ""
1176
             },
1175
             },
1177
             "require": {
1176
             "require": {
1235
                 "uri",
1234
                 "uri",
1236
                 "url"
1235
                 "url"
1237
             ],
1236
             ],
1238
-            "time": "2018-12-03T22:08:12+00:00"
1237
+            "time": "2019-01-03T09:07:35+00:00"
1239
         },
1238
         },
1240
         {
1239
         {
1241
             "name": "symfony/var-exporter",
1240
             "name": "symfony/var-exporter",
1242
-            "version": "v4.2.1",
1241
+            "version": "v4.2.2",
1243
             "source": {
1242
             "source": {
1244
                 "type": "git",
1243
                 "type": "git",
1245
                 "url": "https://github.com/symfony/var-exporter.git",
1244
                 "url": "https://github.com/symfony/var-exporter.git",
1246
-                "reference": "a39222e357362424b61dcde50e2f7b5a7d3306db"
1245
+                "reference": "51bd782120fa2bfed89452f142d2a47c4b51101c"
1247
             },
1246
             },
1248
             "dist": {
1247
             "dist": {
1249
                 "type": "zip",
1248
                 "type": "zip",
1250
-                "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a39222e357362424b61dcde50e2f7b5a7d3306db",
1251
-                "reference": "a39222e357362424b61dcde50e2f7b5a7d3306db",
1249
+                "url": "https://api.github.com/repos/symfony/var-exporter/zipball/51bd782120fa2bfed89452f142d2a47c4b51101c",
1250
+                "reference": "51bd782120fa2bfed89452f142d2a47c4b51101c",
1252
                 "shasum": ""
1251
                 "shasum": ""
1253
             },
1252
             },
1254
             "require": {
1253
             "require": {
1295
                 "instantiate",
1294
                 "instantiate",
1296
                 "serialize"
1295
                 "serialize"
1297
             ],
1296
             ],
1298
-            "time": "2018-12-03T22:40:09+00:00"
1297
+            "time": "2019-01-03T09:09:06+00:00"
1299
         },
1298
         },
1300
         {
1299
         {
1301
             "name": "symfony/yaml",
1300
             "name": "symfony/yaml",
1302
-            "version": "v4.2.1",
1301
+            "version": "v4.2.2",
1303
             "source": {
1302
             "source": {
1304
                 "type": "git",
1303
                 "type": "git",
1305
                 "url": "https://github.com/symfony/yaml.git",
1304
                 "url": "https://github.com/symfony/yaml.git",
1306
-                "reference": "c41175c801e3edfda90f32e292619d10c27103d7"
1305
+                "reference": "d0aa6c0ea484087927b49fd513383a7d36190ca6"
1307
             },
1306
             },
1308
             "dist": {
1307
             "dist": {
1309
                 "type": "zip",
1308
                 "type": "zip",
1310
-                "url": "https://api.github.com/repos/symfony/yaml/zipball/c41175c801e3edfda90f32e292619d10c27103d7",
1311
-                "reference": "c41175c801e3edfda90f32e292619d10c27103d7",
1309
+                "url": "https://api.github.com/repos/symfony/yaml/zipball/d0aa6c0ea484087927b49fd513383a7d36190ca6",
1310
+                "reference": "d0aa6c0ea484087927b49fd513383a7d36190ca6",
1312
                 "shasum": ""
1311
                 "shasum": ""
1313
             },
1312
             },
1314
             "require": {
1313
             "require": {
1354
             ],
1353
             ],
1355
             "description": "Symfony Yaml Component",
1354
             "description": "Symfony Yaml Component",
1356
             "homepage": "https://symfony.com",
1355
             "homepage": "https://symfony.com",
1357
-            "time": "2018-11-11T19:52:12+00:00"
1356
+            "time": "2019-01-03T09:07:35+00:00"
1358
         }
1357
         }
1359
     ],
1358
     ],
1360
     "packages-dev": [],
1359
     "packages-dev": [],

+ 71
- 72
composer.lock.php7.2 View File

4
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
4
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
         "This file is @generated automatically"
5
         "This file is @generated automatically"
6
     ],
6
     ],
7
-    "content-hash": "31756b6cbd5726ef455ddb006a835ff4",
7
+    "content-hash": "8803f5dab116915a28e759ec23ab3123",
8
     "packages": [
8
     "packages": [
9
         {
9
         {
10
             "name": "phpbenchmarks/symfony-common",
10
             "name": "phpbenchmarks/symfony-common",
224
         },
224
         },
225
         {
225
         {
226
             "name": "symfony/cache",
226
             "name": "symfony/cache",
227
-            "version": "v4.2.1",
227
+            "version": "v4.2.2",
228
             "source": {
228
             "source": {
229
                 "type": "git",
229
                 "type": "git",
230
                 "url": "https://github.com/symfony/cache.git",
230
                 "url": "https://github.com/symfony/cache.git",
231
-                "reference": "5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41"
231
+                "reference": "dd223d4bb9a2f9a4b4992851800b349739c40860"
232
             },
232
             },
233
             "dist": {
233
             "dist": {
234
                 "type": "zip",
234
                 "type": "zip",
235
-                "url": "https://api.github.com/repos/symfony/cache/zipball/5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41",
236
-                "reference": "5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41",
235
+                "url": "https://api.github.com/repos/symfony/cache/zipball/dd223d4bb9a2f9a4b4992851800b349739c40860",
236
+                "reference": "dd223d4bb9a2f9a4b4992851800b349739c40860",
237
                 "shasum": ""
237
                 "shasum": ""
238
             },
238
             },
239
             "require": {
239
             "require": {
297
                 "caching",
297
                 "caching",
298
                 "psr6"
298
                 "psr6"
299
             ],
299
             ],
300
-            "time": "2018-12-06T11:00:08+00:00"
300
+            "time": "2019-01-03T09:07:35+00:00"
301
         },
301
         },
302
         {
302
         {
303
             "name": "symfony/config",
303
             "name": "symfony/config",
304
-            "version": "v4.2.1",
304
+            "version": "v4.2.2",
305
             "source": {
305
             "source": {
306
                 "type": "git",
306
                 "type": "git",
307
                 "url": "https://github.com/symfony/config.git",
307
                 "url": "https://github.com/symfony/config.git",
308
-                "reference": "005d9a083d03f588677d15391a716b1ac9b887c0"
308
+                "reference": "a7a7d0a0244cfc82f040729ccf769e6cf55a78fb"
309
             },
309
             },
310
             "dist": {
310
             "dist": {
311
                 "type": "zip",
311
                 "type": "zip",
312
-                "url": "https://api.github.com/repos/symfony/config/zipball/005d9a083d03f588677d15391a716b1ac9b887c0",
313
-                "reference": "005d9a083d03f588677d15391a716b1ac9b887c0",
312
+                "url": "https://api.github.com/repos/symfony/config/zipball/a7a7d0a0244cfc82f040729ccf769e6cf55a78fb",
313
+                "reference": "a7a7d0a0244cfc82f040729ccf769e6cf55a78fb",
314
                 "shasum": ""
314
                 "shasum": ""
315
             },
315
             },
316
             "require": {
316
             "require": {
360
             ],
360
             ],
361
             "description": "Symfony Config Component",
361
             "description": "Symfony Config Component",
362
             "homepage": "https://symfony.com",
362
             "homepage": "https://symfony.com",
363
-            "time": "2018-11-30T22:21:14+00:00"
363
+            "time": "2019-01-03T09:07:35+00:00"
364
         },
364
         },
365
         {
365
         {
366
             "name": "symfony/console",
366
             "name": "symfony/console",
367
-            "version": "v4.2.1",
367
+            "version": "v4.2.2",
368
             "source": {
368
             "source": {
369
                 "type": "git",
369
                 "type": "git",
370
                 "url": "https://github.com/symfony/console.git",
370
                 "url": "https://github.com/symfony/console.git",
371
-                "reference": "4dff24e5d01e713818805c1862d2e3f901ee7dd0"
371
+                "reference": "b0a03c1bb0fcbe288629956cf2f1dd3f1dc97522"
372
             },
372
             },
373
             "dist": {
373
             "dist": {
374
                 "type": "zip",
374
                 "type": "zip",
375
-                "url": "https://api.github.com/repos/symfony/console/zipball/4dff24e5d01e713818805c1862d2e3f901ee7dd0",
376
-                "reference": "4dff24e5d01e713818805c1862d2e3f901ee7dd0",
375
+                "url": "https://api.github.com/repos/symfony/console/zipball/b0a03c1bb0fcbe288629956cf2f1dd3f1dc97522",
376
+                "reference": "b0a03c1bb0fcbe288629956cf2f1dd3f1dc97522",
377
                 "shasum": ""
377
                 "shasum": ""
378
             },
378
             },
379
             "require": {
379
             "require": {
429
             ],
429
             ],
430
             "description": "Symfony Console Component",
430
             "description": "Symfony Console Component",
431
             "homepage": "https://symfony.com",
431
             "homepage": "https://symfony.com",
432
-            "time": "2018-11-27T07:40:44+00:00"
432
+            "time": "2019-01-04T15:13:53+00:00"
433
         },
433
         },
434
         {
434
         {
435
             "name": "symfony/contracts",
435
             "name": "symfony/contracts",
501
         },
501
         },
502
         {
502
         {
503
             "name": "symfony/debug",
503
             "name": "symfony/debug",
504
-            "version": "v4.2.1",
504
+            "version": "v4.2.2",
505
             "source": {
505
             "source": {
506
                 "type": "git",
506
                 "type": "git",
507
                 "url": "https://github.com/symfony/debug.git",
507
                 "url": "https://github.com/symfony/debug.git",
508
-                "reference": "e0a2b92ee0b5b934f973d90c2f58e18af109d276"
508
+                "reference": "64cb33c81e37d19b7715d4a6a4d49c1c382066dd"
509
             },
509
             },
510
             "dist": {
510
             "dist": {
511
                 "type": "zip",
511
                 "type": "zip",
512
-                "url": "https://api.github.com/repos/symfony/debug/zipball/e0a2b92ee0b5b934f973d90c2f58e18af109d276",
513
-                "reference": "e0a2b92ee0b5b934f973d90c2f58e18af109d276",
512
+                "url": "https://api.github.com/repos/symfony/debug/zipball/64cb33c81e37d19b7715d4a6a4d49c1c382066dd",
513
+                "reference": "64cb33c81e37d19b7715d4a6a4d49c1c382066dd",
514
                 "shasum": ""
514
                 "shasum": ""
515
             },
515
             },
516
             "require": {
516
             "require": {
553
             ],
553
             ],
554
             "description": "Symfony Debug Component",
554
             "description": "Symfony Debug Component",
555
             "homepage": "https://symfony.com",
555
             "homepage": "https://symfony.com",
556
-            "time": "2018-11-28T18:24:18+00:00"
556
+            "time": "2019-01-03T09:07:35+00:00"
557
         },
557
         },
558
         {
558
         {
559
             "name": "symfony/dependency-injection",
559
             "name": "symfony/dependency-injection",
560
-            "version": "v4.2.1",
560
+            "version": "v4.2.2",
561
             "source": {
561
             "source": {
562
                 "type": "git",
562
                 "type": "git",
563
                 "url": "https://github.com/symfony/dependency-injection.git",
563
                 "url": "https://github.com/symfony/dependency-injection.git",
564
-                "reference": "e4adc57a48d3fa7f394edfffa9e954086d7740e5"
564
+                "reference": "a28dda9df1d5494367454cad91e44751ac53921c"
565
             },
565
             },
566
             "dist": {
566
             "dist": {
567
                 "type": "zip",
567
                 "type": "zip",
568
-                "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e4adc57a48d3fa7f394edfffa9e954086d7740e5",
569
-                "reference": "e4adc57a48d3fa7f394edfffa9e954086d7740e5",
568
+                "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/a28dda9df1d5494367454cad91e44751ac53921c",
569
+                "reference": "a28dda9df1d5494367454cad91e44751ac53921c",
570
                 "shasum": ""
570
                 "shasum": ""
571
             },
571
             },
572
             "require": {
572
             "require": {
626
             ],
626
             ],
627
             "description": "Symfony DependencyInjection Component",
627
             "description": "Symfony DependencyInjection Component",
628
             "homepage": "https://symfony.com",
628
             "homepage": "https://symfony.com",
629
-            "time": "2018-12-02T15:59:36+00:00"
629
+            "time": "2019-01-05T16:37:49+00:00"
630
         },
630
         },
631
         {
631
         {
632
             "name": "symfony/event-dispatcher",
632
             "name": "symfony/event-dispatcher",
633
-            "version": "v4.2.1",
633
+            "version": "v4.2.2",
634
             "source": {
634
             "source": {
635
                 "type": "git",
635
                 "type": "git",
636
                 "url": "https://github.com/symfony/event-dispatcher.git",
636
                 "url": "https://github.com/symfony/event-dispatcher.git",
637
-                "reference": "921f49c3158a276d27c0d770a5a347a3b718b328"
637
+                "reference": "887de6d34c86cf0cb6cbf910afb170cdb743cb5e"
638
             },
638
             },
639
             "dist": {
639
             "dist": {
640
                 "type": "zip",
640
                 "type": "zip",
641
-                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/921f49c3158a276d27c0d770a5a347a3b718b328",
642
-                "reference": "921f49c3158a276d27c0d770a5a347a3b718b328",
641
+                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/887de6d34c86cf0cb6cbf910afb170cdb743cb5e",
642
+                "reference": "887de6d34c86cf0cb6cbf910afb170cdb743cb5e",
643
                 "shasum": ""
643
                 "shasum": ""
644
             },
644
             },
645
             "require": {
645
             "require": {
690
             ],
690
             ],
691
             "description": "Symfony EventDispatcher Component",
691
             "description": "Symfony EventDispatcher Component",
692
             "homepage": "https://symfony.com",
692
             "homepage": "https://symfony.com",
693
-            "time": "2018-12-01T08:52:38+00:00"
693
+            "time": "2019-01-05T16:37:49+00:00"
694
         },
694
         },
695
         {
695
         {
696
             "name": "symfony/filesystem",
696
             "name": "symfony/filesystem",
697
-            "version": "v4.2.1",
697
+            "version": "v4.2.2",
698
             "source": {
698
             "source": {
699
                 "type": "git",
699
                 "type": "git",
700
                 "url": "https://github.com/symfony/filesystem.git",
700
                 "url": "https://github.com/symfony/filesystem.git",
701
-                "reference": "2f4c8b999b3b7cadb2a69390b01af70886753710"
701
+                "reference": "c2ffd9a93f2d6c5be2f68a0aa7953cc229f871f8"
702
             },
702
             },
703
             "dist": {
703
             "dist": {
704
                 "type": "zip",
704
                 "type": "zip",
705
-                "url": "https://api.github.com/repos/symfony/filesystem/zipball/2f4c8b999b3b7cadb2a69390b01af70886753710",
706
-                "reference": "2f4c8b999b3b7cadb2a69390b01af70886753710",
705
+                "url": "https://api.github.com/repos/symfony/filesystem/zipball/c2ffd9a93f2d6c5be2f68a0aa7953cc229f871f8",
706
+                "reference": "c2ffd9a93f2d6c5be2f68a0aa7953cc229f871f8",
707
                 "shasum": ""
707
                 "shasum": ""
708
             },
708
             },
709
             "require": {
709
             "require": {
740
             ],
740
             ],
741
             "description": "Symfony Filesystem Component",
741
             "description": "Symfony Filesystem Component",
742
             "homepage": "https://symfony.com",
742
             "homepage": "https://symfony.com",
743
-            "time": "2018-11-11T19:52:12+00:00"
743
+            "time": "2019-01-03T09:07:35+00:00"
744
         },
744
         },
745
         {
745
         {
746
             "name": "symfony/finder",
746
             "name": "symfony/finder",
747
-            "version": "v4.2.1",
747
+            "version": "v4.2.2",
748
             "source": {
748
             "source": {
749
                 "type": "git",
749
                 "type": "git",
750
                 "url": "https://github.com/symfony/finder.git",
750
                 "url": "https://github.com/symfony/finder.git",
751
-                "reference": "e53d477d7b5c4982d0e1bfd2298dbee63d01441d"
751
+                "reference": "9094d69e8c6ee3fe186a0ec5a4f1401e506071ce"
752
             },
752
             },
753
             "dist": {
753
             "dist": {
754
                 "type": "zip",
754
                 "type": "zip",
755
-                "url": "https://api.github.com/repos/symfony/finder/zipball/e53d477d7b5c4982d0e1bfd2298dbee63d01441d",
756
-                "reference": "e53d477d7b5c4982d0e1bfd2298dbee63d01441d",
755
+                "url": "https://api.github.com/repos/symfony/finder/zipball/9094d69e8c6ee3fe186a0ec5a4f1401e506071ce",
756
+                "reference": "9094d69e8c6ee3fe186a0ec5a4f1401e506071ce",
757
                 "shasum": ""
757
                 "shasum": ""
758
             },
758
             },
759
             "require": {
759
             "require": {
789
             ],
789
             ],
790
             "description": "Symfony Finder Component",
790
             "description": "Symfony Finder Component",
791
             "homepage": "https://symfony.com",
791
             "homepage": "https://symfony.com",
792
-            "time": "2018-11-11T19:52:12+00:00"
792
+            "time": "2019-01-03T09:07:35+00:00"
793
         },
793
         },
794
         {
794
         {
795
             "name": "symfony/flex",
795
             "name": "symfony/flex",
840
         },
840
         },
841
         {
841
         {
842
             "name": "symfony/framework-bundle",
842
             "name": "symfony/framework-bundle",
843
-            "version": "v4.2.1",
843
+            "version": "v4.2.2",
844
             "source": {
844
             "source": {
845
                 "type": "git",
845
                 "type": "git",
846
                 "url": "https://github.com/symfony/framework-bundle.git",
846
                 "url": "https://github.com/symfony/framework-bundle.git",
847
-                "reference": "eb32d67140510f04fe9cc5fb9ad38fda09591db1"
847
+                "reference": "6cba25ea9489d62addb9971a4bdcf42a5639e641"
848
             },
848
             },
849
             "dist": {
849
             "dist": {
850
                 "type": "zip",
850
                 "type": "zip",
851
-                "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/eb32d67140510f04fe9cc5fb9ad38fda09591db1",
852
-                "reference": "eb32d67140510f04fe9cc5fb9ad38fda09591db1",
851
+                "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/6cba25ea9489d62addb9971a4bdcf42a5639e641",
852
+                "reference": "6cba25ea9489d62addb9971a4bdcf42a5639e641",
853
                 "shasum": ""
853
                 "shasum": ""
854
             },
854
             },
855
             "require": {
855
             "require": {
917
             },
917
             },
918
             "suggest": {
918
             "suggest": {
919
                 "ext-apcu": "For best performance of the system caches",
919
                 "ext-apcu": "For best performance of the system caches",
920
-                "phpdocumentor/reflection-docblock": "For display additional information in debug:container",
921
                 "symfony/console": "For using the console commands",
920
                 "symfony/console": "For using the console commands",
922
                 "symfony/form": "For using forms",
921
                 "symfony/form": "For using forms",
923
                 "symfony/property-info": "For using the property_info service",
922
                 "symfony/property-info": "For using the property_info service",
956
             ],
955
             ],
957
             "description": "Symfony FrameworkBundle",
956
             "description": "Symfony FrameworkBundle",
958
             "homepage": "https://symfony.com",
957
             "homepage": "https://symfony.com",
959
-            "time": "2018-12-05T08:06:11+00:00"
958
+            "time": "2019-01-05T16:37:49+00:00"
960
         },
959
         },
961
         {
960
         {
962
             "name": "symfony/http-foundation",
961
             "name": "symfony/http-foundation",
963
-            "version": "v4.2.1",
962
+            "version": "v4.2.2",
964
             "source": {
963
             "source": {
965
                 "type": "git",
964
                 "type": "git",
966
                 "url": "https://github.com/symfony/http-foundation.git",
965
                 "url": "https://github.com/symfony/http-foundation.git",
967
-                "reference": "1b31f3017fadd8cb05cf2c8aebdbf3b12a943851"
966
+                "reference": "a633d422a09242064ba24e44a6e1494c5126de86"
968
             },
967
             },
969
             "dist": {
968
             "dist": {
970
                 "type": "zip",
969
                 "type": "zip",
971
-                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1b31f3017fadd8cb05cf2c8aebdbf3b12a943851",
972
-                "reference": "1b31f3017fadd8cb05cf2c8aebdbf3b12a943851",
970
+                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a633d422a09242064ba24e44a6e1494c5126de86",
971
+                "reference": "a633d422a09242064ba24e44a6e1494c5126de86",
973
                 "shasum": ""
972
                 "shasum": ""
974
             },
973
             },
975
             "require": {
974
             "require": {
1010
             ],
1009
             ],
1011
             "description": "Symfony HttpFoundation Component",
1010
             "description": "Symfony HttpFoundation Component",
1012
             "homepage": "https://symfony.com",
1011
             "homepage": "https://symfony.com",
1013
-            "time": "2018-11-26T10:55:26+00:00"
1012
+            "time": "2019-01-05T16:37:49+00:00"
1014
         },
1013
         },
1015
         {
1014
         {
1016
             "name": "symfony/http-kernel",
1015
             "name": "symfony/http-kernel",
1017
-            "version": "v4.2.1",
1016
+            "version": "v4.2.2",
1018
             "source": {
1017
             "source": {
1019
                 "type": "git",
1018
                 "type": "git",
1020
                 "url": "https://github.com/symfony/http-kernel.git",
1019
                 "url": "https://github.com/symfony/http-kernel.git",
1021
-                "reference": "b39ceffc0388232c309cbde3a7c3685f2ec0a624"
1020
+                "reference": "83de6543328917c18d5498eeb6bb6d36f7aab31b"
1022
             },
1021
             },
1023
             "dist": {
1022
             "dist": {
1024
                 "type": "zip",
1023
                 "type": "zip",
1025
-                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b39ceffc0388232c309cbde3a7c3685f2ec0a624",
1026
-                "reference": "b39ceffc0388232c309cbde3a7c3685f2ec0a624",
1024
+                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/83de6543328917c18d5498eeb6bb6d36f7aab31b",
1025
+                "reference": "83de6543328917c18d5498eeb6bb6d36f7aab31b",
1027
                 "shasum": ""
1026
                 "shasum": ""
1028
             },
1027
             },
1029
             "require": {
1028
             "require": {
1099
             ],
1098
             ],
1100
             "description": "Symfony HttpKernel Component",
1099
             "description": "Symfony HttpKernel Component",
1101
             "homepage": "https://symfony.com",
1100
             "homepage": "https://symfony.com",
1102
-            "time": "2018-12-06T17:39:52+00:00"
1101
+            "time": "2019-01-06T16:19:23+00:00"
1103
         },
1102
         },
1104
         {
1103
         {
1105
             "name": "symfony/polyfill-mbstring",
1104
             "name": "symfony/polyfill-mbstring",
1162
         },
1161
         },
1163
         {
1162
         {
1164
             "name": "symfony/routing",
1163
             "name": "symfony/routing",
1165
-            "version": "v4.2.1",
1164
+            "version": "v4.2.2",
1166
             "source": {
1165
             "source": {
1167
                 "type": "git",
1166
                 "type": "git",
1168
                 "url": "https://github.com/symfony/routing.git",
1167
                 "url": "https://github.com/symfony/routing.git",
1169
-                "reference": "649460207e77da6c545326c7f53618d23ad2c866"
1168
+                "reference": "e69b7a13a0b58af378a49b49dd7084462de16cee"
1170
             },
1169
             },
1171
             "dist": {
1170
             "dist": {
1172
                 "type": "zip",
1171
                 "type": "zip",
1173
-                "url": "https://api.github.com/repos/symfony/routing/zipball/649460207e77da6c545326c7f53618d23ad2c866",
1174
-                "reference": "649460207e77da6c545326c7f53618d23ad2c866",
1172
+                "url": "https://api.github.com/repos/symfony/routing/zipball/e69b7a13a0b58af378a49b49dd7084462de16cee",
1173
+                "reference": "e69b7a13a0b58af378a49b49dd7084462de16cee",
1175
                 "shasum": ""
1174
                 "shasum": ""
1176
             },
1175
             },
1177
             "require": {
1176
             "require": {
1235
                 "uri",
1234
                 "uri",
1236
                 "url"
1235
                 "url"
1237
             ],
1236
             ],
1238
-            "time": "2018-12-03T22:08:12+00:00"
1237
+            "time": "2019-01-03T09:07:35+00:00"
1239
         },
1238
         },
1240
         {
1239
         {
1241
             "name": "symfony/var-exporter",
1240
             "name": "symfony/var-exporter",
1242
-            "version": "v4.2.1",
1241
+            "version": "v4.2.2",
1243
             "source": {
1242
             "source": {
1244
                 "type": "git",
1243
                 "type": "git",
1245
                 "url": "https://github.com/symfony/var-exporter.git",
1244
                 "url": "https://github.com/symfony/var-exporter.git",
1246
-                "reference": "a39222e357362424b61dcde50e2f7b5a7d3306db"
1245
+                "reference": "51bd782120fa2bfed89452f142d2a47c4b51101c"
1247
             },
1246
             },
1248
             "dist": {
1247
             "dist": {
1249
                 "type": "zip",
1248
                 "type": "zip",
1250
-                "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a39222e357362424b61dcde50e2f7b5a7d3306db",
1251
-                "reference": "a39222e357362424b61dcde50e2f7b5a7d3306db",
1249
+                "url": "https://api.github.com/repos/symfony/var-exporter/zipball/51bd782120fa2bfed89452f142d2a47c4b51101c",
1250
+                "reference": "51bd782120fa2bfed89452f142d2a47c4b51101c",
1252
                 "shasum": ""
1251
                 "shasum": ""
1253
             },
1252
             },
1254
             "require": {
1253
             "require": {
1295
                 "instantiate",
1294
                 "instantiate",
1296
                 "serialize"
1295
                 "serialize"
1297
             ],
1296
             ],
1298
-            "time": "2018-12-03T22:40:09+00:00"
1297
+            "time": "2019-01-03T09:09:06+00:00"
1299
         },
1298
         },
1300
         {
1299
         {
1301
             "name": "symfony/yaml",
1300
             "name": "symfony/yaml",
1302
-            "version": "v4.2.1",
1301
+            "version": "v4.2.2",
1303
             "source": {
1302
             "source": {
1304
                 "type": "git",
1303
                 "type": "git",
1305
                 "url": "https://github.com/symfony/yaml.git",
1304
                 "url": "https://github.com/symfony/yaml.git",
1306
-                "reference": "c41175c801e3edfda90f32e292619d10c27103d7"
1305
+                "reference": "d0aa6c0ea484087927b49fd513383a7d36190ca6"
1307
             },
1306
             },
1308
             "dist": {
1307
             "dist": {
1309
                 "type": "zip",
1308
                 "type": "zip",
1310
-                "url": "https://api.github.com/repos/symfony/yaml/zipball/c41175c801e3edfda90f32e292619d10c27103d7",
1311
-                "reference": "c41175c801e3edfda90f32e292619d10c27103d7",
1309
+                "url": "https://api.github.com/repos/symfony/yaml/zipball/d0aa6c0ea484087927b49fd513383a7d36190ca6",
1310
+                "reference": "d0aa6c0ea484087927b49fd513383a7d36190ca6",
1312
                 "shasum": ""
1311
                 "shasum": ""
1313
             },
1312
             },
1314
             "require": {
1313
             "require": {
1354
             ],
1353
             ],
1355
             "description": "Symfony Yaml Component",
1354
             "description": "Symfony Yaml Component",
1356
             "homepage": "https://symfony.com",
1355
             "homepage": "https://symfony.com",
1357
-            "time": "2018-11-11T19:52:12+00:00"
1356
+            "time": "2019-01-03T09:07:35+00:00"
1358
         }
1357
         }
1359
     ],
1358
     ],
1360
     "packages-dev": [],
1359
     "packages-dev": [],

+ 71
- 72
composer.lock.php7.3 View File

4
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
4
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
         "This file is @generated automatically"
5
         "This file is @generated automatically"
6
     ],
6
     ],
7
-    "content-hash": "31756b6cbd5726ef455ddb006a835ff4",
7
+    "content-hash": "8803f5dab116915a28e759ec23ab3123",
8
     "packages": [
8
     "packages": [
9
         {
9
         {
10
             "name": "phpbenchmarks/symfony-common",
10
             "name": "phpbenchmarks/symfony-common",
224
         },
224
         },
225
         {
225
         {
226
             "name": "symfony/cache",
226
             "name": "symfony/cache",
227
-            "version": "v4.2.1",
227
+            "version": "v4.2.2",
228
             "source": {
228
             "source": {
229
                 "type": "git",
229
                 "type": "git",
230
                 "url": "https://github.com/symfony/cache.git",
230
                 "url": "https://github.com/symfony/cache.git",
231
-                "reference": "5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41"
231
+                "reference": "dd223d4bb9a2f9a4b4992851800b349739c40860"
232
             },
232
             },
233
             "dist": {
233
             "dist": {
234
                 "type": "zip",
234
                 "type": "zip",
235
-                "url": "https://api.github.com/repos/symfony/cache/zipball/5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41",
236
-                "reference": "5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41",
235
+                "url": "https://api.github.com/repos/symfony/cache/zipball/dd223d4bb9a2f9a4b4992851800b349739c40860",
236
+                "reference": "dd223d4bb9a2f9a4b4992851800b349739c40860",
237
                 "shasum": ""
237
                 "shasum": ""
238
             },
238
             },
239
             "require": {
239
             "require": {
297
                 "caching",
297
                 "caching",
298
                 "psr6"
298
                 "psr6"
299
             ],
299
             ],
300
-            "time": "2018-12-06T11:00:08+00:00"
300
+            "time": "2019-01-03T09:07:35+00:00"
301
         },
301
         },
302
         {
302
         {
303
             "name": "symfony/config",
303
             "name": "symfony/config",
304
-            "version": "v4.2.1",
304
+            "version": "v4.2.2",
305
             "source": {
305
             "source": {
306
                 "type": "git",
306
                 "type": "git",
307
                 "url": "https://github.com/symfony/config.git",
307
                 "url": "https://github.com/symfony/config.git",
308
-                "reference": "005d9a083d03f588677d15391a716b1ac9b887c0"
308
+                "reference": "a7a7d0a0244cfc82f040729ccf769e6cf55a78fb"
309
             },
309
             },
310
             "dist": {
310
             "dist": {
311
                 "type": "zip",
311
                 "type": "zip",
312
-                "url": "https://api.github.com/repos/symfony/config/zipball/005d9a083d03f588677d15391a716b1ac9b887c0",
313
-                "reference": "005d9a083d03f588677d15391a716b1ac9b887c0",
312
+                "url": "https://api.github.com/repos/symfony/config/zipball/a7a7d0a0244cfc82f040729ccf769e6cf55a78fb",
313
+                "reference": "a7a7d0a0244cfc82f040729ccf769e6cf55a78fb",
314
                 "shasum": ""
314
                 "shasum": ""
315
             },
315
             },
316
             "require": {
316
             "require": {
360
             ],
360
             ],
361
             "description": "Symfony Config Component",
361
             "description": "Symfony Config Component",
362
             "homepage": "https://symfony.com",
362
             "homepage": "https://symfony.com",
363
-            "time": "2018-11-30T22:21:14+00:00"
363
+            "time": "2019-01-03T09:07:35+00:00"
364
         },
364
         },
365
         {
365
         {
366
             "name": "symfony/console",
366
             "name": "symfony/console",
367
-            "version": "v4.2.1",
367
+            "version": "v4.2.2",
368
             "source": {
368
             "source": {
369
                 "type": "git",
369
                 "type": "git",
370
                 "url": "https://github.com/symfony/console.git",
370
                 "url": "https://github.com/symfony/console.git",
371
-                "reference": "4dff24e5d01e713818805c1862d2e3f901ee7dd0"
371
+                "reference": "b0a03c1bb0fcbe288629956cf2f1dd3f1dc97522"
372
             },
372
             },
373
             "dist": {
373
             "dist": {
374
                 "type": "zip",
374
                 "type": "zip",
375
-                "url": "https://api.github.com/repos/symfony/console/zipball/4dff24e5d01e713818805c1862d2e3f901ee7dd0",
376
-                "reference": "4dff24e5d01e713818805c1862d2e3f901ee7dd0",
375
+                "url": "https://api.github.com/repos/symfony/console/zipball/b0a03c1bb0fcbe288629956cf2f1dd3f1dc97522",
376
+                "reference": "b0a03c1bb0fcbe288629956cf2f1dd3f1dc97522",
377
                 "shasum": ""
377
                 "shasum": ""
378
             },
378
             },
379
             "require": {
379
             "require": {
429
             ],
429
             ],
430
             "description": "Symfony Console Component",
430
             "description": "Symfony Console Component",
431
             "homepage": "https://symfony.com",
431
             "homepage": "https://symfony.com",
432
-            "time": "2018-11-27T07:40:44+00:00"
432
+            "time": "2019-01-04T15:13:53+00:00"
433
         },
433
         },
434
         {
434
         {
435
             "name": "symfony/contracts",
435
             "name": "symfony/contracts",
501
         },
501
         },
502
         {
502
         {
503
             "name": "symfony/debug",
503
             "name": "symfony/debug",
504
-            "version": "v4.2.1",
504
+            "version": "v4.2.2",
505
             "source": {
505
             "source": {
506
                 "type": "git",
506
                 "type": "git",
507
                 "url": "https://github.com/symfony/debug.git",
507
                 "url": "https://github.com/symfony/debug.git",
508
-                "reference": "e0a2b92ee0b5b934f973d90c2f58e18af109d276"
508
+                "reference": "64cb33c81e37d19b7715d4a6a4d49c1c382066dd"
509
             },
509
             },
510
             "dist": {
510
             "dist": {
511
                 "type": "zip",
511
                 "type": "zip",
512
-                "url": "https://api.github.com/repos/symfony/debug/zipball/e0a2b92ee0b5b934f973d90c2f58e18af109d276",
513
-                "reference": "e0a2b92ee0b5b934f973d90c2f58e18af109d276",
512
+                "url": "https://api.github.com/repos/symfony/debug/zipball/64cb33c81e37d19b7715d4a6a4d49c1c382066dd",
513
+                "reference": "64cb33c81e37d19b7715d4a6a4d49c1c382066dd",
514
                 "shasum": ""
514
                 "shasum": ""
515
             },
515
             },
516
             "require": {
516
             "require": {
553
             ],
553
             ],
554
             "description": "Symfony Debug Component",
554
             "description": "Symfony Debug Component",
555
             "homepage": "https://symfony.com",
555
             "homepage": "https://symfony.com",
556
-            "time": "2018-11-28T18:24:18+00:00"
556
+            "time": "2019-01-03T09:07:35+00:00"
557
         },
557
         },
558
         {
558
         {
559
             "name": "symfony/dependency-injection",
559
             "name": "symfony/dependency-injection",
560
-            "version": "v4.2.1",
560
+            "version": "v4.2.2",
561
             "source": {
561
             "source": {
562
                 "type": "git",
562
                 "type": "git",
563
                 "url": "https://github.com/symfony/dependency-injection.git",
563
                 "url": "https://github.com/symfony/dependency-injection.git",
564
-                "reference": "e4adc57a48d3fa7f394edfffa9e954086d7740e5"
564
+                "reference": "a28dda9df1d5494367454cad91e44751ac53921c"
565
             },
565
             },
566
             "dist": {
566
             "dist": {
567
                 "type": "zip",
567
                 "type": "zip",
568
-                "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e4adc57a48d3fa7f394edfffa9e954086d7740e5",
569
-                "reference": "e4adc57a48d3fa7f394edfffa9e954086d7740e5",
568
+                "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/a28dda9df1d5494367454cad91e44751ac53921c",
569
+                "reference": "a28dda9df1d5494367454cad91e44751ac53921c",
570
                 "shasum": ""
570
                 "shasum": ""
571
             },
571
             },
572
             "require": {
572
             "require": {
626
             ],
626
             ],
627
             "description": "Symfony DependencyInjection Component",
627
             "description": "Symfony DependencyInjection Component",
628
             "homepage": "https://symfony.com",
628
             "homepage": "https://symfony.com",
629
-            "time": "2018-12-02T15:59:36+00:00"
629
+            "time": "2019-01-05T16:37:49+00:00"
630
         },
630
         },
631
         {
631
         {
632
             "name": "symfony/event-dispatcher",
632
             "name": "symfony/event-dispatcher",
633
-            "version": "v4.2.1",
633
+            "version": "v4.2.2",
634
             "source": {
634
             "source": {
635
                 "type": "git",
635
                 "type": "git",
636
                 "url": "https://github.com/symfony/event-dispatcher.git",
636
                 "url": "https://github.com/symfony/event-dispatcher.git",
637
-                "reference": "921f49c3158a276d27c0d770a5a347a3b718b328"
637
+                "reference": "887de6d34c86cf0cb6cbf910afb170cdb743cb5e"
638
             },
638
             },
639
             "dist": {
639
             "dist": {
640
                 "type": "zip",
640
                 "type": "zip",
641
-                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/921f49c3158a276d27c0d770a5a347a3b718b328",
642
-                "reference": "921f49c3158a276d27c0d770a5a347a3b718b328",
641
+                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/887de6d34c86cf0cb6cbf910afb170cdb743cb5e",
642
+                "reference": "887de6d34c86cf0cb6cbf910afb170cdb743cb5e",
643
                 "shasum": ""
643
                 "shasum": ""
644
             },
644
             },
645
             "require": {
645
             "require": {
690
             ],
690
             ],
691
             "description": "Symfony EventDispatcher Component",
691
             "description": "Symfony EventDispatcher Component",
692
             "homepage": "https://symfony.com",
692
             "homepage": "https://symfony.com",
693
-            "time": "2018-12-01T08:52:38+00:00"
693
+            "time": "2019-01-05T16:37:49+00:00"
694
         },
694
         },
695
         {
695
         {
696
             "name": "symfony/filesystem",
696
             "name": "symfony/filesystem",
697
-            "version": "v4.2.1",
697
+            "version": "v4.2.2",
698
             "source": {
698
             "source": {
699
                 "type": "git",
699
                 "type": "git",
700
                 "url": "https://github.com/symfony/filesystem.git",
700
                 "url": "https://github.com/symfony/filesystem.git",
701
-                "reference": "2f4c8b999b3b7cadb2a69390b01af70886753710"
701
+                "reference": "c2ffd9a93f2d6c5be2f68a0aa7953cc229f871f8"
702
             },
702
             },
703
             "dist": {
703
             "dist": {
704
                 "type": "zip",
704
                 "type": "zip",
705
-                "url": "https://api.github.com/repos/symfony/filesystem/zipball/2f4c8b999b3b7cadb2a69390b01af70886753710",
706
-                "reference": "2f4c8b999b3b7cadb2a69390b01af70886753710",
705
+                "url": "https://api.github.com/repos/symfony/filesystem/zipball/c2ffd9a93f2d6c5be2f68a0aa7953cc229f871f8",
706
+                "reference": "c2ffd9a93f2d6c5be2f68a0aa7953cc229f871f8",
707
                 "shasum": ""
707
                 "shasum": ""
708
             },
708
             },
709
             "require": {
709
             "require": {
740
             ],
740
             ],
741
             "description": "Symfony Filesystem Component",
741
             "description": "Symfony Filesystem Component",
742
             "homepage": "https://symfony.com",
742
             "homepage": "https://symfony.com",
743
-            "time": "2018-11-11T19:52:12+00:00"
743
+            "time": "2019-01-03T09:07:35+00:00"
744
         },
744
         },
745
         {
745
         {
746
             "name": "symfony/finder",
746
             "name": "symfony/finder",
747
-            "version": "v4.2.1",
747
+            "version": "v4.2.2",
748
             "source": {
748
             "source": {
749
                 "type": "git",
749
                 "type": "git",
750
                 "url": "https://github.com/symfony/finder.git",
750
                 "url": "https://github.com/symfony/finder.git",
751
-                "reference": "e53d477d7b5c4982d0e1bfd2298dbee63d01441d"
751
+                "reference": "9094d69e8c6ee3fe186a0ec5a4f1401e506071ce"
752
             },
752
             },
753
             "dist": {
753
             "dist": {
754
                 "type": "zip",
754
                 "type": "zip",
755
-                "url": "https://api.github.com/repos/symfony/finder/zipball/e53d477d7b5c4982d0e1bfd2298dbee63d01441d",
756
-                "reference": "e53d477d7b5c4982d0e1bfd2298dbee63d01441d",
755
+                "url": "https://api.github.com/repos/symfony/finder/zipball/9094d69e8c6ee3fe186a0ec5a4f1401e506071ce",
756
+                "reference": "9094d69e8c6ee3fe186a0ec5a4f1401e506071ce",
757
                 "shasum": ""
757
                 "shasum": ""
758
             },
758
             },
759
             "require": {
759
             "require": {
789
             ],
789
             ],
790
             "description": "Symfony Finder Component",
790
             "description": "Symfony Finder Component",
791
             "homepage": "https://symfony.com",
791
             "homepage": "https://symfony.com",
792
-            "time": "2018-11-11T19:52:12+00:00"
792
+            "time": "2019-01-03T09:07:35+00:00"
793
         },
793
         },
794
         {
794
         {
795
             "name": "symfony/flex",
795
             "name": "symfony/flex",
840
         },
840
         },
841
         {
841
         {
842
             "name": "symfony/framework-bundle",
842
             "name": "symfony/framework-bundle",
843
-            "version": "v4.2.1",
843
+            "version": "v4.2.2",
844
             "source": {
844
             "source": {
845
                 "type": "git",
845
                 "type": "git",
846
                 "url": "https://github.com/symfony/framework-bundle.git",
846
                 "url": "https://github.com/symfony/framework-bundle.git",
847
-                "reference": "eb32d67140510f04fe9cc5fb9ad38fda09591db1"
847
+                "reference": "6cba25ea9489d62addb9971a4bdcf42a5639e641"
848
             },
848
             },
849
             "dist": {
849
             "dist": {
850
                 "type": "zip",
850
                 "type": "zip",
851
-                "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/eb32d67140510f04fe9cc5fb9ad38fda09591db1",
852
-                "reference": "eb32d67140510f04fe9cc5fb9ad38fda09591db1",
851
+                "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/6cba25ea9489d62addb9971a4bdcf42a5639e641",
852
+                "reference": "6cba25ea9489d62addb9971a4bdcf42a5639e641",
853
                 "shasum": ""
853
                 "shasum": ""
854
             },
854
             },
855
             "require": {
855
             "require": {
917
             },
917
             },
918
             "suggest": {
918
             "suggest": {
919
                 "ext-apcu": "For best performance of the system caches",
919
                 "ext-apcu": "For best performance of the system caches",
920
-                "phpdocumentor/reflection-docblock": "For display additional information in debug:container",
921
                 "symfony/console": "For using the console commands",
920
                 "symfony/console": "For using the console commands",
922
                 "symfony/form": "For using forms",
921
                 "symfony/form": "For using forms",
923
                 "symfony/property-info": "For using the property_info service",
922
                 "symfony/property-info": "For using the property_info service",
956
             ],
955
             ],
957
             "description": "Symfony FrameworkBundle",
956
             "description": "Symfony FrameworkBundle",
958
             "homepage": "https://symfony.com",
957
             "homepage": "https://symfony.com",
959
-            "time": "2018-12-05T08:06:11+00:00"
958
+            "time": "2019-01-05T16:37:49+00:00"
960
         },
959
         },
961
         {
960
         {
962
             "name": "symfony/http-foundation",
961
             "name": "symfony/http-foundation",
963
-            "version": "v4.2.1",
962
+            "version": "v4.2.2",
964
             "source": {
963
             "source": {
965
                 "type": "git",
964
                 "type": "git",
966
                 "url": "https://github.com/symfony/http-foundation.git",
965
                 "url": "https://github.com/symfony/http-foundation.git",
967
-                "reference": "1b31f3017fadd8cb05cf2c8aebdbf3b12a943851"
966
+                "reference": "a633d422a09242064ba24e44a6e1494c5126de86"
968
             },
967
             },
969
             "dist": {
968
             "dist": {
970
                 "type": "zip",
969
                 "type": "zip",
971
-                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1b31f3017fadd8cb05cf2c8aebdbf3b12a943851",
972
-                "reference": "1b31f3017fadd8cb05cf2c8aebdbf3b12a943851",
970
+                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a633d422a09242064ba24e44a6e1494c5126de86",
971
+                "reference": "a633d422a09242064ba24e44a6e1494c5126de86",
973
                 "shasum": ""
972
                 "shasum": ""
974
             },
973
             },
975
             "require": {
974
             "require": {
1010
             ],
1009
             ],
1011
             "description": "Symfony HttpFoundation Component",
1010
             "description": "Symfony HttpFoundation Component",
1012
             "homepage": "https://symfony.com",
1011
             "homepage": "https://symfony.com",
1013
-            "time": "2018-11-26T10:55:26+00:00"
1012
+            "time": "2019-01-05T16:37:49+00:00"
1014
         },
1013
         },
1015
         {
1014
         {
1016
             "name": "symfony/http-kernel",
1015
             "name": "symfony/http-kernel",
1017
-            "version": "v4.2.1",
1016
+            "version": "v4.2.2",
1018
             "source": {
1017
             "source": {
1019
                 "type": "git",
1018
                 "type": "git",
1020
                 "url": "https://github.com/symfony/http-kernel.git",
1019
                 "url": "https://github.com/symfony/http-kernel.git",
1021
-                "reference": "b39ceffc0388232c309cbde3a7c3685f2ec0a624"
1020
+                "reference": "83de6543328917c18d5498eeb6bb6d36f7aab31b"
1022
             },
1021
             },
1023
             "dist": {
1022
             "dist": {
1024
                 "type": "zip",
1023
                 "type": "zip",
1025
-                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b39ceffc0388232c309cbde3a7c3685f2ec0a624",
1026
-                "reference": "b39ceffc0388232c309cbde3a7c3685f2ec0a624",
1024
+                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/83de6543328917c18d5498eeb6bb6d36f7aab31b",
1025
+                "reference": "83de6543328917c18d5498eeb6bb6d36f7aab31b",
1027
                 "shasum": ""
1026
                 "shasum": ""
1028
             },
1027
             },
1029
             "require": {
1028
             "require": {
1099
             ],
1098
             ],
1100
             "description": "Symfony HttpKernel Component",
1099
             "description": "Symfony HttpKernel Component",
1101
             "homepage": "https://symfony.com",
1100
             "homepage": "https://symfony.com",
1102
-            "time": "2018-12-06T17:39:52+00:00"
1101
+            "time": "2019-01-06T16:19:23+00:00"
1103
         },
1102
         },
1104
         {
1103
         {
1105
             "name": "symfony/polyfill-mbstring",
1104
             "name": "symfony/polyfill-mbstring",
1162
         },
1161
         },
1163
         {
1162
         {
1164
             "name": "symfony/routing",
1163
             "name": "symfony/routing",
1165
-            "version": "v4.2.1",
1164
+            "version": "v4.2.2",
1166
             "source": {
1165
             "source": {
1167
                 "type": "git",
1166
                 "type": "git",
1168
                 "url": "https://github.com/symfony/routing.git",
1167
                 "url": "https://github.com/symfony/routing.git",
1169
-                "reference": "649460207e77da6c545326c7f53618d23ad2c866"
1168
+                "reference": "e69b7a13a0b58af378a49b49dd7084462de16cee"
1170
             },
1169
             },
1171
             "dist": {
1170
             "dist": {
1172
                 "type": "zip",
1171
                 "type": "zip",
1173
-                "url": "https://api.github.com/repos/symfony/routing/zipball/649460207e77da6c545326c7f53618d23ad2c866",
1174
-                "reference": "649460207e77da6c545326c7f53618d23ad2c866",
1172
+                "url": "https://api.github.com/repos/symfony/routing/zipball/e69b7a13a0b58af378a49b49dd7084462de16cee",
1173
+                "reference": "e69b7a13a0b58af378a49b49dd7084462de16cee",
1175
                 "shasum": ""
1174
                 "shasum": ""
1176
             },
1175
             },
1177
             "require": {
1176
             "require": {
1235
                 "uri",
1234
                 "uri",
1236
                 "url"
1235
                 "url"
1237
             ],
1236
             ],
1238
-            "time": "2018-12-03T22:08:12+00:00"
1237
+            "time": "2019-01-03T09:07:35+00:00"
1239
         },
1238
         },
1240
         {
1239
         {
1241
             "name": "symfony/var-exporter",
1240
             "name": "symfony/var-exporter",
1242
-            "version": "v4.2.1",
1241
+            "version": "v4.2.2",
1243
             "source": {
1242
             "source": {
1244
                 "type": "git",
1243
                 "type": "git",
1245
                 "url": "https://github.com/symfony/var-exporter.git",
1244
                 "url": "https://github.com/symfony/var-exporter.git",
1246
-                "reference": "a39222e357362424b61dcde50e2f7b5a7d3306db"
1245
+                "reference": "51bd782120fa2bfed89452f142d2a47c4b51101c"
1247
             },
1246
             },
1248
             "dist": {
1247
             "dist": {
1249
                 "type": "zip",
1248
                 "type": "zip",
1250
-                "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a39222e357362424b61dcde50e2f7b5a7d3306db",
1251
-                "reference": "a39222e357362424b61dcde50e2f7b5a7d3306db",
1249
+                "url": "https://api.github.com/repos/symfony/var-exporter/zipball/51bd782120fa2bfed89452f142d2a47c4b51101c",
1250
+                "reference": "51bd782120fa2bfed89452f142d2a47c4b51101c",
1252
                 "shasum": ""
1251
                 "shasum": ""
1253
             },
1252
             },
1254
             "require": {
1253
             "require": {
1295
                 "instantiate",
1294
                 "instantiate",
1296
                 "serialize"
1295
                 "serialize"
1297
             ],
1296
             ],
1298
-            "time": "2018-12-03T22:40:09+00:00"
1297
+            "time": "2019-01-03T09:09:06+00:00"
1299
         },
1298
         },
1300
         {
1299
         {
1301
             "name": "symfony/yaml",
1300
             "name": "symfony/yaml",
1302
-            "version": "v4.2.1",
1301
+            "version": "v4.2.2",
1303
             "source": {
1302
             "source": {
1304
                 "type": "git",
1303
                 "type": "git",
1305
                 "url": "https://github.com/symfony/yaml.git",
1304
                 "url": "https://github.com/symfony/yaml.git",
1306
-                "reference": "c41175c801e3edfda90f32e292619d10c27103d7"
1305
+                "reference": "d0aa6c0ea484087927b49fd513383a7d36190ca6"
1307
             },
1306
             },
1308
             "dist": {
1307
             "dist": {
1309
                 "type": "zip",
1308
                 "type": "zip",
1310
-                "url": "https://api.github.com/repos/symfony/yaml/zipball/c41175c801e3edfda90f32e292619d10c27103d7",
1311
-                "reference": "c41175c801e3edfda90f32e292619d10c27103d7",
1309
+                "url": "https://api.github.com/repos/symfony/yaml/zipball/d0aa6c0ea484087927b49fd513383a7d36190ca6",
1310
+                "reference": "d0aa6c0ea484087927b49fd513383a7d36190ca6",
1312
                 "shasum": ""
1311
                 "shasum": ""
1313
             },
1312
             },
1314
             "require": {
1313
             "require": {
1354
             ],
1353
             ],
1355
             "description": "Symfony Yaml Component",
1354
             "description": "Symfony Yaml Component",
1356
             "homepage": "https://symfony.com",
1355
             "homepage": "https://symfony.com",
1357
-            "time": "2018-11-11T19:52:12+00:00"
1356
+            "time": "2019-01-03T09:07:35+00:00"
1358
         }
1357
         }
1359
     ],
1358
     ],
1360
     "packages-dev": [],
1359
     "packages-dev": [],

Loading…
Cancel
Save