updated composer
This commit is contained in:
4
vendor/opis/closure/CHANGELOG.md
vendored
4
vendor/opis/closure/CHANGELOG.md
vendored
@@ -1,6 +1,10 @@
|
||||
CHANGELOG
|
||||
---------
|
||||
|
||||
### v3.6.2, 2021.04.09
|
||||
|
||||
- Fixed string interpolation
|
||||
|
||||
### v3.6.1, 2020.11.07
|
||||
|
||||
- Fixed serialization error [#84](https://github.com/opis/closure/issues/84)
|
||||
|
||||
4
vendor/opis/closure/README.md
vendored
4
vendor/opis/closure/README.md
vendored
@@ -45,7 +45,7 @@ The full documentation for this library can be found [here][documentation].
|
||||
|
||||
## Requirements
|
||||
|
||||
* PHP ^5.4 || ^7.0
|
||||
* PHP ^5.4 || ^7.0 || ^8.0
|
||||
|
||||
## Installation
|
||||
|
||||
@@ -89,4 +89,4 @@ So our advice regarding the `Opis\Closure\serialize|unserialize` functions is to
|
||||
[Packagist]: https://packagist.org/packages/opis/closure "Packagist"
|
||||
[Composer]: https://getcomposer.org "Composer"
|
||||
[SemVer]: http://semver.org/ "Semantic versioning"
|
||||
[CHANGELOG]: https://github.com/opis/closure/blob/master/CHANGELOG.md "Changelog"
|
||||
[CHANGELOG]: https://github.com/opis/closure/blob/master/CHANGELOG.md "Changelog"
|
||||
|
||||
2
vendor/opis/closure/autoload.php
vendored
2
vendor/opis/closure/autoload.php
vendored
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018-2019 Zindex Software
|
||||
* Copyright (c) 2018-2021 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
|
||||
2
vendor/opis/closure/functions.php
vendored
2
vendor/opis/closure/functions.php
vendored
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018-2019 Zindex Software
|
||||
* Copyright (c) 2018-2021 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
|
||||
2
vendor/opis/closure/src/Analyzer.php
vendored
2
vendor/opis/closure/src/Analyzer.php
vendored
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018-2019 Zindex Software
|
||||
* Copyright (c) 2018-2021 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
|
||||
2
vendor/opis/closure/src/ClosureContext.php
vendored
2
vendor/opis/closure/src/ClosureContext.php
vendored
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018-2019 Zindex Software
|
||||
* Copyright (c) 2018-2021 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
|
||||
2
vendor/opis/closure/src/ClosureScope.php
vendored
2
vendor/opis/closure/src/ClosureScope.php
vendored
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018-2019 Zindex Software
|
||||
* Copyright (c) 2018-2021 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
|
||||
2
vendor/opis/closure/src/ClosureStream.php
vendored
2
vendor/opis/closure/src/ClosureStream.php
vendored
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018-2019 Zindex Software
|
||||
* Copyright (c) 2018-2021 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018-2019 Zindex Software
|
||||
* Copyright (c) 2018-2021 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018-2019 Zindex Software
|
||||
* Copyright (c) 2018-2021 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
@@ -271,7 +271,7 @@ class ReflectionClosure extends ReflectionFunction
|
||||
case T_CURLY_OPEN:
|
||||
case T_DOLLAR_OPEN_CURLY_BRACES:
|
||||
case '{':
|
||||
$code .= '{';
|
||||
$code .= is_array($token) ? $token[1] : $token;
|
||||
$open++;
|
||||
break;
|
||||
case '}':
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018-2019 Zindex Software
|
||||
* Copyright (c) 2018-2021 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
|
||||
2
vendor/opis/closure/src/SecurityProvider.php
vendored
2
vendor/opis/closure/src/SecurityProvider.php
vendored
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018-2019 Zindex Software
|
||||
* Copyright (c) 2018-2021 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
|
||||
2
vendor/opis/closure/src/SelfReference.php
vendored
2
vendor/opis/closure/src/SelfReference.php
vendored
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018-2019 Zindex Software
|
||||
* Copyright (c) 2018-2021 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* ===========================================================================
|
||||
* Copyright (c) 2018-2019 Zindex Software
|
||||
* Copyright (c) 2018-2021 Zindex Software
|
||||
*
|
||||
* Licensed under the MIT License
|
||||
* =========================================================================== */
|
||||
|
||||
Reference in New Issue
Block a user