[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#67902] [PATCH v3 06/96] gnu: Add php-doctrine-common.
From: |
Nicolas Graves |
Subject: |
[bug#67902] [PATCH v3 06/96] gnu: Add php-doctrine-common. |
Date: |
Mon, 7 Oct 2024 01:59:01 +0200 |
* gnu/packages/php-xyz.scm (php-doctrine-common): New variable.
Change-Id: I261b3f5e5aa32869bb6358064ac1cb049f018d6a
---
gnu/packages/php-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 56b2ce9f7d..cfff0d2b1a 100644
--- a/gnu/packages/php-xyz.scm
+++ b/gnu/packages/php-xyz.scm
@@ -108,3 +108,30 @@ (define-public php-doctrine-collections
(home-page "https://www.doctrine-project.org/projects/collections")
(license license:expat)))
+(define-public php-doctrine-common
+ (package
+ (name "php-doctrine-common")
+ (version "3.4.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/doctrine/common")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1hivhghwmqs5jaiicayni35xkpclmdf5r9fb15y5jx7rl5wrsh7f"))))
+ (build-system composer-build-system)
+ (arguments
+ '(#:test-flags '("--bootstrap" "vendor/autoload.php")))
+ (inputs
+ (list php-doctrine-persistence))
+ (native-inputs
+ (list php-phpunit-phpunit))
+ (synopsis "PHP utility library for Doctrine projects")
+ (description
+ "This package provides additional functionality that other Doctrine
+projects depend on such as better reflection support, proxies and much more.")
+ (home-page "https://www.doctrine-project.org/projects/common")
+ (license license:expat)))
+
--
2.46.0
- [bug#67902] [PATCH v3 01/96] gnu: Add abnfgen., Nicolas Graves, 2024/10/06
- [bug#67902] [PATCH v3 03/96] gnu: php-xyz: Add copyright and useful modules., Nicolas Graves, 2024/10/06
- [bug#67902] [PATCH v3 06/96] gnu: Add php-doctrine-common.,
Nicolas Graves <=
- [bug#67902] [PATCH v3 02/96] gnu: php-xyz: Add copyright and useful modules., Nicolas Graves, 2024/10/06
- [bug#67902] [PATCH v3 04/96] gnu: Add php-cache-tag-interop., Nicolas Graves, 2024/10/06
- [bug#67902] [PATCH v3 05/96] gnu: Add php-doctrine-collections., Nicolas Graves, 2024/10/06
- [bug#67902] [PATCH v3 09/96] gnu: Add php-doctrine-instantiator., Nicolas Graves, 2024/10/06
- [bug#67902] [PATCH v3 08/96] gnu: Add php-doctrine-event-manager., Nicolas Graves, 2024/10/06
- [bug#67902] [PATCH v3 11/96] gnu: Add php-doctrine-persistence., Nicolas Graves, 2024/10/06
- [bug#67902] [PATCH v3 13/96] gnu: Add php-egulias-email-validator., Nicolas Graves, 2024/10/06
- [bug#67902] [PATCH v3 07/96] gnu: Add php-doctrine-deprecations., Nicolas Graves, 2024/10/06
- [bug#67902] [PATCH v3 12/96] gnu: Add php-dms-phpunit-arraysubset-asserts., Nicolas Graves, 2024/10/06
- [bug#67902] [PATCH v3 10/96] gnu: Add php-doctrine-lexer., Nicolas Graves, 2024/10/06