phpunit: 11.1.1 -> 11.1.3

diff: https://github.com/sebastianbergmann/phpunit/compare/11.1.1...11.1.3
This commit is contained in:
Patka 2024-05-06 17:45:05 +02:00
parent af26b7239d
commit 249a84be14
No known key found for this signature in database

View File

@ -1,27 +1,30 @@
{ lib
, fetchFromGitHub
, nix-update-script
, php
}:
php.buildComposerProject (finalAttrs: {
pname = "phpunit";
version = "11.1.1";
version = "11.1.3";
src = fetchFromGitHub {
owner = "sebastianbergmann";
repo = "phpunit";
rev = finalAttrs.version;
hash = "sha256-aS2mQeE8WnEaTexl8qhhfGyi1MP48s6fjrTXkVLq1LU=";
hash = "sha256-Wq2k44WpUhDhSyIx8ofn/jUR7FS3zn2CCe4OiFKHXEA=";
};
vendorHash = "sha256-kjMJCrMG08AXX662GAR5+V6w1+WOv8F9r6ONIOowP8Q=";
passthru.updateScript = nix-update-script { };
meta = {
changelog = "https://github.com/sebastianbergmann/phpunit/blob/${finalAttrs.version}/ChangeLog-${lib.versions.majorMinor finalAttrs.version}.md";
description = "PHP Unit Testing framework";
homepage = "https://phpunit.de";
license = lib.licenses.bsd3;
mainProgram = "phpunit";
maintainers = [ lib.maintainers.onny lib.maintainers.patka ] ++ lib.teams.php.members;
maintainers = with lib.maintainers; [ onny patka ] ++ lib.teams.php.members;
};
})