20250204
This commit is contained in:
7
vendor/phpunit/php-timer/ChangeLog.md
vendored
7
vendor/phpunit/php-timer/ChangeLog.md
vendored
@@ -2,12 +2,6 @@
|
||||
|
||||
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
|
||||
|
||||
## [8.0.0] - 2025-02-07
|
||||
|
||||
### Removed
|
||||
|
||||
* This component is no longer supported on PHP 8.1
|
||||
|
||||
## [7.0.1] - 2024-07-03
|
||||
|
||||
### Changed
|
||||
@@ -145,7 +139,6 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
|
||||
|
||||
* This component is no longer supported on PHP 5.3, PHP 5.4, PHP 5.5, PHP 5.6, and PHP 7.0
|
||||
|
||||
[8.0.0]: https://github.com/sebastianbergmann/php-timer/compare/7.0...main
|
||||
[7.0.1]: https://github.com/sebastianbergmann/php-timer/compare/7.0.0...7.0.1
|
||||
[7.0.0]: https://github.com/sebastianbergmann/php-timer/compare/6.0...7.0.0
|
||||
[6.0.0]: https://github.com/sebastianbergmann/php-timer/compare/5.0.3...6.0.0
|
||||
|
2
vendor/phpunit/php-timer/LICENSE
vendored
2
vendor/phpunit/php-timer/LICENSE
vendored
@@ -1,6 +1,6 @@
|
||||
BSD 3-Clause License
|
||||
|
||||
Copyright (c) 2010-2025, Sebastian Bergmann
|
||||
Copyright (c) 2010-2024, Sebastian Bergmann
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
2
vendor/phpunit/php-timer/README.md
vendored
2
vendor/phpunit/php-timer/README.md
vendored
@@ -1,6 +1,6 @@
|
||||
# phpunit/php-timer
|
||||
|
||||
[](https://packagist.org/packages/phpunit/php-timer)
|
||||
[](https://packagist.org/packages/phpunit/php-timer)
|
||||
[](https://github.com/sebastianbergmann/php-timer/actions)
|
||||
[](https://codecov.io/gh/sebastianbergmann/php-timer)
|
||||
|
||||
|
9
vendor/phpunit/php-timer/composer.json
vendored
9
vendor/phpunit/php-timer/composer.json
vendored
@@ -18,17 +18,16 @@
|
||||
"issues": "https://github.com/sebastianbergmann/php-timer/issues",
|
||||
"security": "https://github.com/sebastianbergmann/php-timer/security/policy"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"require": {
|
||||
"php": ">=8.3"
|
||||
"php": ">=8.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^12.0-dev"
|
||||
"phpunit/phpunit": "^11.0"
|
||||
},
|
||||
"config": {
|
||||
"platform": {
|
||||
"php": "8.3.0"
|
||||
"php": "8.2.0"
|
||||
},
|
||||
"optimize-autoloader": true,
|
||||
"sort-packages": true
|
||||
@@ -40,7 +39,7 @@
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "8.0-dev"
|
||||
"dev-main": "7.0-dev"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -19,7 +19,7 @@ final class ResourceUsageFormatter
|
||||
/**
|
||||
* @var array<string,int>
|
||||
*/
|
||||
private const array SIZES = [
|
||||
private const SIZES = [
|
||||
'GB' => 1073741824,
|
||||
'MB' => 1048576,
|
||||
'KB' => 1024,
|
||||
|
Reference in New Issue
Block a user