[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#67902] [PATCH 89/95] gnu: Add php-doctrine-cache.
From: |
Nicolas Graves |
Subject: |
[bug#67902] [PATCH 89/95] gnu: Add php-doctrine-cache. |
Date: |
Tue, 19 Dec 2023 14:58:10 +0100 |
* gnu/packages/php-xyz.scm (php-doctrine-cache): New variable.
Change-Id: I4db60b0dfc7bd84eb698cb10812fc48b8238f788
---
gnu/packages/php-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 89130274e0..036554b8ab 100644
--- a/gnu/packages/php-xyz.scm
+++ b/gnu/packages/php-xyz.scm
@@ -2415,3 +2415,37 @@ (define-public php-symfony-yaml
(home-page "https://symfony.com")
(license license:expat)))
+;; This package is placed here because it needs to be defined after
+;; php-symfony-cache due to package inheritance.
+(define-public php-doctrine-cache
+ (package
+ (name "php-doctrine-cache")
+ (version "2.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/doctrine/cache")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0dq1sylirjhps485s748qmb79cz64njs9wy9qxj10h3r01b6knz6"))))
+ (build-system composer-build-system)
+ (arguments
+ '(#:test-flags '("--bootstrap" "vendor/autoload.php")))
+ (native-inputs
+ (list php-phpunit-phpunit
+ php-psr-cache
+ php-cache-integration-tests
+ (package/inherit php-symfony-cache
+ (arguments '(#:tests? #f))
+ (native-inputs '()))
+ php-symfony-var-exporter))
+ (synopsis "PHP cache library")
+ (description
+ "This package provides a PHP cache popular library. This implementation
+supports many different drivers such as redis, memcache, apc, mongodb and
+others.")
+ (home-page "https://www.doctrine-project.org/projects/cache")
+ (license license:expat)))
+
--
2.41.0
- [bug#67902] [PATCH 77/95] gnu: Add php-symfony-polyfill-intl-idn., (continued)
- [bug#67902] [PATCH 77/95] gnu: Add php-symfony-polyfill-intl-idn., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 81/95] gnu: Add php-symfony-service-contracts., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 82/95] gnu: Add php-symfony-stopwatch., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 90/95] gnu: Add php-doctrine-annotations., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 92/95] gnu: Add php-theseer-tokenizer., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 83/95] gnu: Add php-symfony-string., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 86/95] gnu: Add php-symfony-var-dumper., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 87/95] gnu: Add php-symfony-var-exporter., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 88/95] gnu: Add php-symfony-yaml., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 91/95] gnu: Add php-doctrine-dbal., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 89/95] gnu: Add php-doctrine-cache.,
Nicolas Graves <=
- [bug#67902] [PATCH 93/95] gnu: Add php-twig-twig., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 84/95] gnu: Add php-symfony-translation-contracts., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 85/95] gnu: Add php-symfony-uid., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 94/95] gnu: Add php-webmozart-assert., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 95/95] gnu: Add php-phpunit-phpunit., Nicolas Graves, 2023/12/19
- [bug#67902] [PATCH 02/95 v2] gnu: php-xyz: Add copyright and useful modules., Nicolas Graves, 2023/12/19