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