guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#67902] [PATCH v5 25/54] gnu: Add php-phpunit-php-invoker.


From: Nicolas Graves
Subject: [bug#67902] [PATCH v5 25/54] gnu: Add php-phpunit-php-invoker.
Date: Fri, 18 Oct 2024 01:05:48 +0200

* gnu/packages/php-bootstrap.scm (php-phpunit-php-invoker): New variable.
---
 gnu/packages/php-bootstrap.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/php-bootstrap.scm b/gnu/packages/php-bootstrap.scm
index 14c368a461..4183b94409 100644
--- a/gnu/packages/php-bootstrap.scm
+++ b/gnu/packages/php-bootstrap.scm
@@ -639,3 +639,24 @@ (define-public php-phpunit-php-file-iterator
     (home-page "https://github.com/sebastianbergmann/php-file-iterator/";)
     (license license:bsd-3)))
 
+(define-public php-phpunit-php-invoker
+  (package
+    (name "php-phpunit-php-invoker")
+    (version "4.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/sebastianbergmann/php-invoker";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "11mnr7k7nxgi2s0fz0f4b947b7prjj5jhbqvx1hm0p9rdn0biggn"))))
+    (build-system composer-build-system)
+    (native-inputs
+     (list php-phpunit-phpunit))
+    (synopsis "PHP library for invoking functions")
+    (description "This package contains a library to invoke callables with a
+timeout.")
+    (home-page "https://github.com/sebastianbergmann/php-invoker/";)
+    (license license:bsd-3)))
-- 
2.46.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]