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: {
pname = "phpstan";
version = "1.10.37";
version = "1.10.44";
src = fetchFromGitHub {
owner = "phpstan";
repo = "phpstan-src";
rev = finalAttrs.version;
hash = "sha256-y55bfwE3H/oDCwDq3wrClyX8dhk0p6vEl/CMhqN6LkA=";
hash = "sha256-QV3LYsl/vkC7GgGXthMneCTE716YP7dYL6bnSZDCwlA=";
};
vendorHash = "sha256-hjCfrmpn2rYgApenZkHX8fXqPXukh7BVKENkvwIk8Dk=";
vendorHash = "sha256-eF9ijUhCjMd0c9/I/QGPvFnXW5vkmBTEvE2TgiZCabg=";
composerStrictValidation = false;
meta = {
changelog = "https://github.com/phpstan/phpstan/releases/tag/${finalAttrs.version}";
description = "PHP Static Analysis Tool";
homepage = "https://github.com/phpstan/phpstan";
longDescription = ''
PHPStan focuses on finding errors in your code without actually
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.
'';
license = lib.licenses.mit;
homepage = "https://github.com/phpstan/phpstan";
mainProgram = "phpstan";
maintainers = lib.teams.php.members;
};
})