guix-patches
[Top][All Lists]
Advanced

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

[bug#67902] [PATCH 63/95] gnu: Add php-symfony-event-dispatcher-contract


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

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

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

diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 1d5f033585..97fba315e0 100644
--- a/gnu/packages/php-xyz.scm
+++ b/gnu/packages/php-xyz.scm
@@ -1683,3 +1683,24 @@ (define-public php-symfony-event-dispatcher
     (home-page "https://symfony.com";)
     (license license:expat)))
 
+(define-public php-symfony-event-dispatcher-contracts
+  (package
+    (name "php-symfony-event-dispatcher-contracts")
+    (version "3.3.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/symfony/event-dispatcher-contracts";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1l2vigh39v7a4kcx3jxllsd0flvhanhidr61dvvf653v7ll8igk3"))))
+    (build-system composer-build-system)
+    (inputs (list php-psr-event-dispatcher))
+    (synopsis "PHP abstractions for event handling")
+    (description "This package provides generic abstractions related to
+dispatching event in PHP.")
+    (home-page "https://symfony.com";)
+    (license license:expat)))
+
-- 
2.41.0






reply via email to

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