Unverified Commit 40316893 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #269028 from drupol/php/bump-phpstan

php.packages.phpstan: 1.10.37 -> 1.10.44
parents ef4e16fb 9ab1c33c
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -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;
  };
})