GNU bug report logs -
#67902
[PATCH 00/95] PHP package chain.
Previous Next
Full log
Message #875 received at 67902 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/php-xyz.scm (php-doctrine-dbal): New variable.
Change-Id: Ifb88a4da25e138ee22448237604d448332878ae9
---
gnu/packages/php-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 0b273fabaf..f09d05da59 100644
--- a/gnu/packages/php-xyz.scm
+++ b/gnu/packages/php-xyz.scm
@@ -2470,3 +2470,39 @@ (define-public php-doctrine-annotations
(home-page "https://www.doctrine-project.org/projects/annotations")
(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-dbal
+ (package
+ (name "php-doctrine-dbal")
+ (version "3.7.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/doctrine/dbal")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0fj68qx0bsczc0hh5y86zk9a5p693lx0sav8lidrz5nagqjhlnf2"))))
+ (build-system composer-build-system)
+ (arguments
+ '(#:test-flags '("--bootstrap" "vendor/autoload.php")))
+ (inputs
+ (list php-doctrine-deprecations php-psr-cache php-psr-log))
+ (native-inputs
+ (list php-phpunit-phpunit
+ php-doctrine-cache
+ php-doctrine-event-manager
+ php-fig-log-test
+ (package/inherit php-symfony-cache
+ (arguments '(#:tests? #f))
+ (native-inputs '()))
+ php-symfony-console))
+ (synopsis "Handle databases in PHP")
+ (description
+ "This package provides a PHP database abstraction layer (DBAL) with many
+features for database schema introspection and management.")
+ (home-page "https://www.doctrine-project.org/projects/dbal")
+ (license license:expat)))
+
--
2.46.0
This bug report was last modified 240 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.