phpunit app

This commit is contained in:
Robin Appelman 2025-10-25 23:37:06 +02:00
commit d143b04ec3
4 changed files with 84 additions and 2 deletions

12
apps/phpunit.nix Normal file
View file

@ -0,0 +1,12 @@
{
phpunit,
testDependencies,
writeShellApplication,
}:
writeShellApplication {
name = "phpunit";
runtimeInputs = [phpunit] ++ testDependencies;
text = ''
phpunit "$@"
'';
}