1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 08:15:56 +00:00

require phpstan via composer

This commit is contained in:
Andrew Dolgov
2021-10-22 13:42:29 +03:00
parent 2a5c2be6cd
commit 3b70d1f622
19 changed files with 409 additions and 7 deletions

View File

@@ -30,7 +30,7 @@ private static $installed = array (
'aliases' =>
array (
),
'reference' => 'f96abd2b52b9de5eac3651594ca32c6a4023c3e3',
'reference' => '2a5c2be6cdd9ba9217a0661805b62aeec1de90c3',
'dev-requirement' => true,
'name' => '__root__',
),
@@ -43,7 +43,7 @@ private static $installed = array (
'aliases' =>
array (
),
'reference' => 'f96abd2b52b9de5eac3651594ca32c6a4023c3e3',
'reference' => '2a5c2be6cdd9ba9217a0661805b62aeec1de90c3',
'dev-requirement' => false,
),
'beberlei/assert' =>
@@ -106,6 +106,16 @@ private static $installed = array (
'reference' => 'f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c',
'dev-requirement' => false,
),
'phpstan/phpstan' =>
array (
'pretty_version' => '0.12.99',
'version' => '0.12.99.0',
'aliases' =>
array (
),
'reference' => 'b4d40f1d759942f523be267a1bab6884f46ca3f7',
'dev-requirement' => true,
),
'spomky-labs/otphp' =>
array (
'pretty_version' => 'v10.0.1',

View File

@@ -6,6 +6,7 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
'9b38cf48e83f5d8f60375221cd213eee' => $vendorDir . '/phpstan/phpstan/bootstrap.php',
'a4ecaeafb8cfb009ad0e052c90355e98' => $vendorDir . '/beberlei/assert/lib/Assert/functions.php',
'51fcf4e06c07cc00c920b44bcd900e7a' => $vendorDir . '/thecodingmachine/safe/deprecated/apc.php',
'47f619d9197b36cf5ab70738d7743fe2' => $vendorDir . '/thecodingmachine/safe/deprecated/libevent.php',

View File

@@ -7,6 +7,7 @@ namespace Composer\Autoload;
class ComposerStaticInit19fc2ff1c0f9a92279c7979386bb2056
{
public static $files = array (
'9b38cf48e83f5d8f60375221cd213eee' => __DIR__ . '/..' . '/phpstan/phpstan/bootstrap.php',
'a4ecaeafb8cfb009ad0e052c90355e98' => __DIR__ . '/..' . '/beberlei/assert/lib/Assert/functions.php',
'51fcf4e06c07cc00c920b44bcd900e7a' => __DIR__ . '/..' . '/thecodingmachine/safe/deprecated/apc.php',
'47f619d9197b36cf5ab70738d7743fe2' => __DIR__ . '/..' . '/thecodingmachine/safe/deprecated/libevent.php',

View File

@@ -389,6 +389,73 @@
},
"install-path": "../paragonie/constant_time_encoding"
},
{
"name": "phpstan/phpstan",
"version": "0.12.99",
"version_normalized": "0.12.99.0",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan.git",
"reference": "b4d40f1d759942f523be267a1bab6884f46ca3f7"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/b4d40f1d759942f523be267a1bab6884f46ca3f7",
"reference": "b4d40f1d759942f523be267a1bab6884f46ca3f7",
"shasum": ""
},
"require": {
"php": "^7.1|^8.0"
},
"conflict": {
"phpstan/phpstan-shim": "*"
},
"time": "2021-09-12T20:09:55+00:00",
"bin": [
"phpstan",
"phpstan.phar"
],
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "0.12-dev"
}
},
"installation-source": "dist",
"autoload": {
"files": [
"bootstrap.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"description": "PHPStan - PHP Static Analysis Tool",
"support": {
"issues": "https://github.com/phpstan/phpstan/issues",
"source": "https://github.com/phpstan/phpstan/tree/0.12.99"
},
"funding": [
{
"url": "https://github.com/ondrejmirtes",
"type": "github"
},
{
"url": "https://github.com/phpstan",
"type": "github"
},
{
"url": "https://www.patreon.com/phpstan",
"type": "patreon"
},
{
"url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
"type": "tidelift"
}
],
"install-path": "../phpstan/phpstan"
},
{
"name": "spomky-labs/otphp",
"version": "v10.0.1",
@@ -611,5 +678,7 @@
}
],
"dev": true,
"dev-package-names": []
"dev-package-names": [
"phpstan/phpstan"
]
}

View File

@@ -6,7 +6,7 @@
'aliases' =>
array (
),
'reference' => 'f96abd2b52b9de5eac3651594ca32c6a4023c3e3',
'reference' => '2a5c2be6cdd9ba9217a0661805b62aeec1de90c3',
'dev-requirement' => true,
'name' => '__root__',
),
@@ -19,7 +19,7 @@
'aliases' =>
array (
),
'reference' => 'f96abd2b52b9de5eac3651594ca32c6a4023c3e3',
'reference' => '2a5c2be6cdd9ba9217a0661805b62aeec1de90c3',
'dev-requirement' => false,
),
'beberlei/assert' =>
@@ -82,6 +82,16 @@
'reference' => 'f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c',
'dev-requirement' => false,
),
'phpstan/phpstan' =>
array (
'pretty_version' => '0.12.99',
'version' => '0.12.99.0',
'aliases' =>
array (
),
'reference' => 'b4d40f1d759942f523be267a1bab6884f46ca3f7',
'dev-requirement' => true,
),
'spomky-labs/otphp' =>
array (
'pretty_version' => 'v10.0.1',