guix-patches
[Top][All Lists]
Advanced

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

[bug#67902] [PATCH v5 41/54] gnu: Add php-sebastian-exporter.


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

* gnu/packages/php-bootstrap.scm (php-sebastian-exporter): 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 3e28f6fd4a..0de6350d6b 100644
--- a/gnu/packages/php-bootstrap.scm
+++ b/gnu/packages/php-bootstrap.scm
@@ -983,3 +983,27 @@ (define-public php-sebastian-environment
      "This package provides functionality to handle HHVM/PHP environments.")
     (home-page "https://github.com/sebastianbergmann/environment";)
     (license license:bsd-3)))
+
+(define-public php-sebastian-exporter
+  (package
+    (name "php-sebastian-exporter")
+    (version "4.0.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/sebastianbergmann/exporter";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "03jgh5vw1h6n97cklni667wj5ml1b4h15wdkra0j7m1b8gxym7lj"))))
+    (build-system composer-build-system)
+    (native-inputs
+     (list php-phpunit-phpunit))
+    (inputs
+     (list php-sebastian-recursion-context))
+    (synopsis "Visualize PHP variables")
+    (description "This package provides the functionality to export PHP
+variables for visualization.")
+    (home-page "https://github.com/sebastianbergmann/exporter";)
+    (license license:bsd-3)))
-- 
2.46.0






reply via email to

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