20250204
This commit is contained in:
7
vendor/phpunit/php-invoker/ChangeLog.md
vendored
7
vendor/phpunit/php-invoker/ChangeLog.md
vendored
@@ -2,12 +2,6 @@
|
||||
|
||||
All notable changes are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
|
||||
|
||||
## [6.0.0] - 2025-02-07
|
||||
|
||||
### Removed
|
||||
|
||||
* This component is no longer supported on PHP 8.2
|
||||
|
||||
## [5.0.1] - 2024-07-03
|
||||
|
||||
### Changed
|
||||
@@ -65,7 +59,6 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
|
||||
|
||||
* This component is no longer supported on PHP 7.1 and PHP 7.2
|
||||
|
||||
[6.0.0]: https://github.com/sebastianbergmann/php-invoker/compare/5.0...main
|
||||
[5.0.1]: https://github.com/sebastianbergmann/php-invoker/compare/5.0.1...5.0.1
|
||||
[5.0.0]: https://github.com/sebastianbergmann/php-invoker/compare/4.0...5.0.0
|
||||
[4.0.0]: https://github.com/sebastianbergmann/php-invoker/compare/3.1.1...4.0.0
|
||||
|
2
vendor/phpunit/php-invoker/LICENSE
vendored
2
vendor/phpunit/php-invoker/LICENSE
vendored
@@ -1,6 +1,6 @@
|
||||
BSD 3-Clause License
|
||||
|
||||
Copyright (c) 2011-2025, Sebastian Bergmann
|
||||
Copyright (c) 2011-2024, Sebastian Bergmann
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
2
vendor/phpunit/php-invoker/README.md
vendored
2
vendor/phpunit/php-invoker/README.md
vendored
@@ -1,6 +1,6 @@
|
||||
# phpunit/php-invoker
|
||||
|
||||
[](https://packagist.org/packages/phpunit/php-invoker)
|
||||
[](https://packagist.org/packages/phpunit/php-invoker)
|
||||
[](https://github.com/sebastianbergmann/php-invoker/actions)
|
||||
[](https://codecov.io/gh/sebastianbergmann/php-invoker)
|
||||
|
||||
|
9
vendor/phpunit/php-invoker/composer.json
vendored
9
vendor/phpunit/php-invoker/composer.json
vendored
@@ -18,21 +18,20 @@
|
||||
"issues": "https://github.com/sebastianbergmann/php-invoker/issues",
|
||||
"security": "https://github.com/sebastianbergmann/php-invoker/security/policy"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"config": {
|
||||
"platform": {
|
||||
"php": "8.3.0"
|
||||
"php": "8.2.0"
|
||||
},
|
||||
"optimize-autoloader": true,
|
||||
"sort-packages": true
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.3"
|
||||
"php": ">=8.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"ext-pcntl": "*",
|
||||
"phpunit/phpunit": "^12.0-dev"
|
||||
"phpunit/phpunit": "^11.0"
|
||||
},
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
@@ -49,7 +48,7 @@
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "6.0-dev"
|
||||
"dev-main": "5.0-dev"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -9,7 +9,6 @@
|
||||
*/
|
||||
namespace SebastianBergmann\Invoker;
|
||||
|
||||
use const PHP_EOL;
|
||||
use function extension_loaded;
|
||||
use function function_exists;
|
||||
use function implode;
|
||||
|
Reference in New Issue
Block a user