guix-patches
[Top][All Lists]
Advanced

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

[bug#67902] [PATCH v5 18/54] gnu: Add php-phpdocumentor-reflection-commo


From: Nicolas Graves
Subject: [bug#67902] [PATCH v5 18/54] gnu: Add php-phpdocumentor-reflection-common.
Date: Fri, 18 Oct 2024 01:05:41 +0200

* gnu/packages/php-bootstrap.scm (php-phpdocumentor-reflection-common): New 
variable.
---
 gnu/packages/php-bootstrap.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/php-bootstrap.scm b/gnu/packages/php-bootstrap.scm
index 8df5295557..bf0c7f6ca0 100644
--- a/gnu/packages/php-bootstrap.scm
+++ b/gnu/packages/php-bootstrap.scm
@@ -433,3 +433,25 @@ (define-public php-phar-io-version
     (home-page "https://phar.io";)
     (properties '((upstream-name . "phar-io/version")))
     (license license:bsd-3)))
+
+(define-public php-phpdocumentor-reflection-common
+  (package
+    (name "php-phpdocumentor-reflection-common")
+    (version "2.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/phpDocumentor/ReflectionCommon";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1q685cpwbfxqy42iz61xxv6zbcc1qskn07nkipflj6c5s935l8jy"))))
+    (build-system composer-build-system)
+    (native-inputs
+     (list php-phpunit-phpunit))
+    (synopsis "Common reflection classes for phpdocumentor")
+    (description "This package contains common classes used by phpdocumentor
+to analyze the code structure.")
+    (home-page "http://www.phpdoc.org";)
+    (license license:expat)))
-- 
2.46.0






reply via email to

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