Skip to content

Commit cf32556

Browse files
Merge branch '11.0'
* 11.0: Update tools
2 parents ba70759 + 96939c7 commit cf32556

File tree

13 files changed

+50
-62
lines changed

13 files changed

+50
-62
lines changed

.phive/phars.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
3-
<phar name="php-cs-fixer" version="^3.86" installed="3.88.0" location="./tools/php-cs-fixer" copy="true"/>
4-
<phar name="composer" version="^2.8" installed="2.8.12" location="./tools/composer" copy="true"/>
3+
<phar name="php-cs-fixer" version="^3.86" installed="3.89.2" location="./tools/php-cs-fixer" copy="true"/>
4+
<phar name="composer" version="^2.8" installed="2.9.0-RC1" location="./tools/composer" copy="true"/>
55
</phive>

tools/.phpstan/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require-dev": {
3-
"phpstan/phpstan": "^2.1.29",
3+
"phpstan/phpstan": "^2.1.31",
44
"phpstan/extension-installer": "^1.4.3",
55
"phpstan/phpstan-strict-rules": "^2.0.7",
66
"tomasvotruba/type-coverage": "^2.0.2",

tools/.phpstan/composer.lock

Lines changed: 6 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/.phpstan/vendor/bin/phpstan

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,14 @@ if (PHP_VERSION_ID < 80000) {
2424
{
2525
private $handle;
2626
private $position;
27-
private $realpath;
2827

2928
public function stream_open($path, $mode, $options, &$opened_path)
3029
{
3130
// get rid of phpvfscomposer:// prefix for __FILE__ & __DIR__ resolution
3231
$opened_path = substr($path, 17);
33-
$this->realpath = realpath($opened_path) ?: $opened_path;
34-
$opened_path = $this->realpath;
35-
$this->handle = fopen($this->realpath, $mode);
32+
$realpath = realpath($opened_path) ?: $opened_path;
33+
$opened_path = $realpath;
34+
$this->handle = fopen($realpath, $mode);
3635
$this->position = 0;
3736

3837
return (bool) $this->handle;

tools/.phpstan/vendor/bin/phpstan.phar

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,14 @@ if (PHP_VERSION_ID < 80000) {
2424
{
2525
private $handle;
2626
private $position;
27-
private $realpath;
2827

2928
public function stream_open($path, $mode, $options, &$opened_path)
3029
{
3130
// get rid of phpvfscomposer:// prefix for __FILE__ & __DIR__ resolution
3231
$opened_path = substr($path, 17);
33-
$this->realpath = realpath($opened_path) ?: $opened_path;
34-
$opened_path = $this->realpath;
35-
$this->handle = fopen($this->realpath, $mode);
32+
$realpath = realpath($opened_path) ?: $opened_path;
33+
$opened_path = $realpath;
34+
$this->handle = fopen($realpath, $mode);
3635
$this->position = 0;
3736

3837
return (bool) $this->handle;

tools/.phpstan/vendor/composer/autoload_static.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,43 +11,43 @@ class ComposerStaticInitf9e7218f71d5874b5632927df4f72bd7
1111
);
1212

1313
public static $prefixLengthsPsr4 = array (
14-
'T' =>
14+
'T' =>
1515
array (
1616
'TomasVotruba\\TypeCoverage\\' => 26,
1717
),
18-
'P' =>
18+
'P' =>
1919
array (
2020
'PHPStan\\ExtensionInstaller\\' => 27,
2121
'PHPStan\\' => 8,
2222
),
23-
'N' =>
23+
'N' =>
2424
array (
2525
'Nette\\' => 6,
2626
),
27-
'E' =>
27+
'E' =>
2828
array (
2929
'Ergebnis\\PHPStan\\Rules\\' => 23,
3030
),
3131
);
3232

3333
public static $prefixDirsPsr4 = array (
34-
'TomasVotruba\\TypeCoverage\\' =>
34+
'TomasVotruba\\TypeCoverage\\' =>
3535
array (
3636
0 => __DIR__ . '/..' . '/tomasvotruba/type-coverage/src',
3737
),
38-
'PHPStan\\ExtensionInstaller\\' =>
38+
'PHPStan\\ExtensionInstaller\\' =>
3939
array (
4040
0 => __DIR__ . '/..' . '/phpstan/extension-installer/src',
4141
),
42-
'PHPStan\\' =>
42+
'PHPStan\\' =>
4343
array (
4444
0 => __DIR__ . '/..' . '/phpstan/phpstan-strict-rules/src',
4545
),
46-
'Nette\\' =>
46+
'Nette\\' =>
4747
array (
4848
0 => __DIR__ . '/..' . '/nette/utils/src',
4949
),
50-
'Ergebnis\\PHPStan\\Rules\\' =>
50+
'Ergebnis\\PHPStan\\Rules\\' =>
5151
array (
5252
0 => __DIR__ . '/..' . '/ergebnis/phpstan-rules/src',
5353
),

tools/.phpstan/vendor/composer/installed.json

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -221,17 +221,12 @@
221221
},
222222
{
223223
"name": "phpstan/phpstan",
224-
"version": "2.1.29",
225-
"version_normalized": "2.1.29.0",
226-
"source": {
227-
"type": "git",
228-
"url": "https://github.com/phpstan/phpstan-phar-composer-source.git",
229-
"reference": "git"
230-
},
224+
"version": "2.1.31",
225+
"version_normalized": "2.1.31.0",
231226
"dist": {
232227
"type": "zip",
233-
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/d618573eed4a1b6b75e37b2e0b65ac65c885d88e",
234-
"reference": "d618573eed4a1b6b75e37b2e0b65ac65c885d88e",
228+
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/ead89849d879fe203ce9292c6ef5e7e76f867b96",
229+
"reference": "ead89849d879fe203ce9292c6ef5e7e76f867b96",
235230
"shasum": ""
236231
},
237232
"require": {
@@ -240,7 +235,7 @@
240235
"conflict": {
241236
"phpstan/phpstan-shim": "*"
242237
},
243-
"time": "2025-09-25T06:58:18+00:00",
238+
"time": "2025-10-10T14:14:11+00:00",
244239
"bin": [
245240
"phpstan",
246241
"phpstan.phar"

tools/.phpstan/vendor/composer/installed.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => '__root__',
44
'pretty_version' => 'dev-main',
55
'version' => 'dev-main',
6-
'reference' => 'b129b36a3fc9115e5552f546ef92ea15e6db0195',
6+
'reference' => 'ba70759fec4d74412f9854a5c613a5af3e4032d3',
77
'type' => 'library',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -13,7 +13,7 @@
1313
'__root__' => array(
1414
'pretty_version' => 'dev-main',
1515
'version' => 'dev-main',
16-
'reference' => 'b129b36a3fc9115e5552f546ef92ea15e6db0195',
16+
'reference' => 'ba70759fec4d74412f9854a5c613a5af3e4032d3',
1717
'type' => 'library',
1818
'install_path' => __DIR__ . '/../../',
1919
'aliases' => array(),
@@ -47,9 +47,9 @@
4747
'dev_requirement' => true,
4848
),
4949
'phpstan/phpstan' => array(
50-
'pretty_version' => '2.1.29',
51-
'version' => '2.1.29.0',
52-
'reference' => 'd618573eed4a1b6b75e37b2e0b65ac65c885d88e',
50+
'pretty_version' => '2.1.31',
51+
'version' => '2.1.31.0',
52+
'reference' => 'ead89849d879fe203ce9292c6ef5e7e76f867b96',
5353
'type' => 'library',
5454
'install_path' => __DIR__ . '/../phpstan/phpstan',
5555
'aliases' => array(),

tools/.phpstan/vendor/phpstan/phpstan/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
"files": ["bootstrap.php"]
1818
},
1919
"source": {
20-
"type": "git",
21-
"url": "https://github.com/phpstan/phpstan-phar-composer-source.git",
22-
"reference": "git"
20+
"type": "",
21+
"url": "",
22+
"reference": ""
2323
},
2424
"support": {
2525
"issues": "https://github.com/phpstan/phpstan/issues",
42.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)