[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#67902] [PATCH 02/95 v2] gnu: php-xyz: Add copyright and useful modu
From: |
Nicolas Graves |
Subject: |
[bug#67902] [PATCH 02/95 v2] gnu: php-xyz: Add copyright and useful modules. |
Date: |
Tue, 19 Dec 2023 21:15:39 +0100 |
* gnu/packages/php-xyz.scm: Add copyright and useful modules.
Change-Id: I80fd9d604128c6dc09e8af49039d46972f26f971
---
gnu/packages/php-xyz.scm | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index bef5a2dcb4..55d5b6bfdc 100644
--- a/gnu/packages/php-xyz.scm
+++ b/gnu/packages/php-xyz.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019 Julien Lepiller <julien@lepiller.eu>
+;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -17,13 +18,22 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages php-xyz)
- #:use-module (gnu packages)
- #:use-module (gnu packages php)
#:use-module (guix packages)
+ #:use-module (guix gexp)
#:use-module (guix git-download)
+ #:use-module (guix build-system composer)
#:use-module (guix build-system copy)
#:use-module (guix utils)
- #:use-module ((guix licenses) #:prefix license:))
+ #:use-module (srfi srfi-1)
+ #:use-module (srfi srfi-26)
+ #:use-module (ice-9 match)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages check)
+ #:use-module (gnu packages databases)
+ #:use-module (gnu packages linux)
+ #:use-module (gnu packages php)
+ #:use-module (gnu packages version-control))
(define-public composer-classloader
(package
--
2.41.0
- [bug#67902] [PATCH 86/95] gnu: Add php-symfony-var-dumper., (continued)
- [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, 2023/12/19
- [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 <=