php.packages.phpstan: 1.10.37 -> 1.10.44

This commit is contained in:
Pol Dellaiera 2023-11-21 20:28:56 +01:00
parent dc7b3febf8
commit 9ab1c33c8b
No known key found for this signature in database
GPG key ID: D476DFE9C67467CA

View file

@ -2,20 +2,22 @@
php.buildComposerProject (finalAttrs: { php.buildComposerProject (finalAttrs: {
pname = "phpstan"; pname = "phpstan";
version = "1.10.37"; version = "1.10.44";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "phpstan"; owner = "phpstan";
repo = "phpstan-src"; repo = "phpstan-src";
rev = finalAttrs.version; rev = finalAttrs.version;
hash = "sha256-y55bfwE3H/oDCwDq3wrClyX8dhk0p6vEl/CMhqN6LkA="; hash = "sha256-QV3LYsl/vkC7GgGXthMneCTE716YP7dYL6bnSZDCwlA=";
}; };
vendorHash = "sha256-hjCfrmpn2rYgApenZkHX8fXqPXukh7BVKENkvwIk8Dk="; vendorHash = "sha256-eF9ijUhCjMd0c9/I/QGPvFnXW5vkmBTEvE2TgiZCabg=";
composerStrictValidation = false;
meta = { meta = {
changelog = "https://github.com/phpstan/phpstan/releases/tag/${finalAttrs.version}"; changelog = "https://github.com/phpstan/phpstan/releases/tag/${finalAttrs.version}";
description = "PHP Static Analysis Tool"; description = "PHP Static Analysis Tool";
homepage = "https://github.com/phpstan/phpstan";
longDescription = '' longDescription = ''
PHPStan focuses on finding errors in your code without actually PHPStan focuses on finding errors in your code without actually
running it. It catches whole classes of bugs even before you write running it. It catches whole classes of bugs even before you write
@ -24,7 +26,7 @@ php.buildComposerProject (finalAttrs: {
before you run the actual line. before you run the actual line.
''; '';
license = lib.licenses.mit; license = lib.licenses.mit;
homepage = "https://github.com/phpstan/phpstan"; mainProgram = "phpstan";
maintainers = lib.teams.php.members; maintainers = lib.teams.php.members;
}; };
}) })