guix-patches
[Top][All Lists]
Advanced

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

[bug#67902] [PATCH 36/95] gnu: Add php-psr-event-dispatcher.


From: Nicolas Graves
Subject: [bug#67902] [PATCH 36/95] gnu: Add php-psr-event-dispatcher.
Date: Tue, 19 Dec 2023 14:57:17 +0100

* gnu/packages/php-xyz.scm (php-psr-event-dispatcher): New variable.

Change-Id: I62db3ea0f3a1429a6bd25c843738b022f3909177
---
 gnu/packages/php-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 5c92f18941..f9cf7e5210 100644
--- a/gnu/packages/php-xyz.scm
+++ b/gnu/packages/php-xyz.scm
@@ -940,3 +940,23 @@ (define-public php-psr-container
     (home-page "https://github.com/php-fig/container";)
     (license license:expat)))
 
+(define-public php-psr-event-dispatcher
+  (package
+    (name "php-psr-event-dispatcher")
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/php-fig/event-dispatcher";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1rxjscznzihbpgngwci61ji8qy5c623qmpy9zpqbj0f5vv8l99kp"))))
+    (build-system composer-build-system)
+    (synopsis "PHP interfaces for event handling")
+    (description "This package provides PHP standard interfaces for event
+handling.")
+    (home-page "https://github.com/php-fig/event-dispatcher";)
+    (license license:expat)))
+
-- 
2.41.0






reply via email to

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