guix-patches
[Top][All Lists]
Advanced

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

[bug#67902] [PATCH v5 08/54] gnu: Add php-doctrine-event-manager.


From: Nicolas Graves
Subject: [bug#67902] [PATCH v5 08/54] gnu: Add php-doctrine-event-manager.
Date: Fri, 18 Oct 2024 01:05:31 +0200

* gnu/packages/php-bootstrap.scm (php-doctrine-event-manager): New variable.
---
 gnu/packages/php-bootstrap.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/php-bootstrap.scm b/gnu/packages/php-bootstrap.scm
index 2e263109cc..45e20c9fd9 100644
--- a/gnu/packages/php-bootstrap.scm
+++ b/gnu/packages/php-bootstrap.scm
@@ -159,3 +159,26 @@ (define-public php-doctrine-deprecations
 strategies, with no side-effects by default and customization options.")
     (home-page "https://github.com/doctrine/deprecations";)
     (license license:expat)))
+
+(define-public php-doctrine-event-manager
+  (package
+    (name "php-doctrine-event-manager")
+    (version "2.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/doctrine/event-manager";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "093ghp48ci4xazswlaxlmiabw7vay1nvv382nc1i6nrdxn781y0g"))))
+    (build-system composer-build-system)
+    (native-inputs
+     (list php-phpunit-phpunit))
+    (synopsis "Simple PHP event system")
+    (description
+     "This package provides the Doctrine Event Manager, a simple PHP event
+system that was built to be used with the various Doctrine projects.")
+    (home-page "https://www.doctrine-project.org/projects/event-manager";)
+    (license license:expat)))
-- 
2.46.0






reply via email to

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