guix-patches
[Top][All Lists]
Advanced

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

[bug#67902] [PATCH v5 44/54] gnu: Add php-sebastian-object-enumerator.


From: Nicolas Graves
Subject: [bug#67902] [PATCH v5 44/54] gnu: Add php-sebastian-object-enumerator.
Date: Fri, 18 Oct 2024 01:06:07 +0200

* gnu/packages/php-bootstrap.scm (php-sebastian-object-enumerator): New 
variable.
---
 gnu/packages/php-bootstrap.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/php-bootstrap.scm b/gnu/packages/php-bootstrap.scm
index 9a80a5d400..47e83a6564 100644
--- a/gnu/packages/php-bootstrap.scm
+++ b/gnu/packages/php-bootstrap.scm
@@ -1063,3 +1063,27 @@ (define-public php-sebastian-lines-of-code
 code in PHP source code.")
     (home-page "https://github.com/sebastianbergmann/lines-of-code";)
     (license license:bsd-3)))
+
+(define-public php-sebastian-object-enumerator
+  (package
+    (name "php-sebastian-object-enumerator")
+    (version "4.0.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/sebastianbergmann/object-enumerator";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1f3zghb32g2mrh2abkasi79y6cq1aisp2dam5hnv0y76sddkrsd6"))))
+    (build-system composer-build-system)
+    (native-inputs
+     (list php-phpunit-phpunit))
+    (inputs
+     (list php-sebastian-recursion-context php-sebastian-object-reflector))
+    (synopsis "Enumerate PHP objects")
+    (description "This package allows PHP programs to traverse array structures
+and object graphs to enumerate all referenced objects.")
+    (home-page "https://github.com/sebastianbergmann/object-enumerator/";)
+    (license license:bsd-3)))
-- 
2.46.0






reply via email to

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