unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob eebf64c1a3451320b499e83760be82f59a640865 33001 bytes (raw)
name: gnu/packages/php-xyz.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019 Julien Lepiller <julien@lepiller.eu>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; 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 download)
  #:use-module (guix git-download)
  #:use-module (guix build-system composer)
  #:use-module (guix build-system gnu)
  #:use-module (guix utils)
  #:use-module ((guix licenses) #:prefix license:))

(define-public composer-classloader
  (package
    (name "composer-classloader")
    (version "1.9.0")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/composer/composer.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0127zmmg3yx84ljngfs86q7kjhyypybkf4d1ihfrfnzgynzxfxdf"))))
    (build-system gnu-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (delete 'configure)
         (delete 'build)
         (delete 'check)
         (replace 'install
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (install (string-append out "/share/web/composer/ClassLoader.php")))
               (mkdir-p (dirname install))
               (copy-file "src/Composer/Autoload/ClassLoader.php" install)))))))
    (home-page "https://getcomposer.org")
    (synopsis "PHP class loader extracted from the composer package")
    (description "This package contains the class loader class used by Composer to
build its autoloading feature.  This package is used by the composer-build-system
to build its own store-aware autoloading feature.")
    (license license:expat)))

(define-public php-doctrine-instantiator
  (package
    (name "php-doctrine-instantiator")
    (version "1.3.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/doctrine/instantiator.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "17c72j29p77gdgh06b9qc0nivmav0k5yc22z4ryygj7dhr1h65nq"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Utility for instantiating PHP objects")
    (description "This package provides a small, lightweight utility to
instantiate objects in PHP without invoking their constructors")
    (home-page "https://www.doctrine-project.org/projects/instantiator.html")
    (license license:expat)))

(define-public php-sebastian-recursion-context
  (package
    (name "php-sebastian-recursion-context")
    (version "4.0.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/recursion-context.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0glpydmvr95f9xbmh76vgid2nz7rf6lxwfz1j7ksvgmf4m1dniyz"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Process PHP variables recursively")
    (description "This package provides functionality to recursively process
PHP variables")
    (home-page "http://www.github.com/sebastianbergmann/recursion-context")
    (license license:bsd-3)))

(define-public php-sebastian-exporter
  (package
    (name "php-sebastian-exporter")
    (version "4.0.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/exporter.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "03xj9gbi8ifnbj5n72gfpwyg65l71gg1r8yvzpbg6d3yxbqaa8f6"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (inputs
     `(("php-sebastian-recursion-context" ,php-sebastian-recursion-context)))
    (synopsis "Visualize PHP variables")
    (description "This package provides the functionality to export PHP
variables for visualization")
    (home-page "http://www.github.com/sebastianbergmann/exporter")
    (license license:bsd-3)))

(define-public php-myclabs-deep-copy
  (package
    (name "php-myclabs-deep-copy")
    (version "1.10.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/myclabs/DeepCopy.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1ms4qhx5cf19ggdicnd7qjrigwam206py6mj6nw8bz71mafq9nbi"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Create copies of PHP objects")
    (description "This package contains a facility to create deep copies (clones)
of PHP objects.  This package not only creates a new copy of an object, it
recursively create new copies of any object referenced by the object.  It is
designed to work even in the presence of cycles in the association graph.")
    (home-page "https://github.com/myclabs/DeepCopy.git")
    (license license:expat)))

(define-public php-phar-io-version
  (package
    (name "php-phar-io-version")
    (version "3.0.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/phar-io/version.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0r9470p0azw7l0x2wbn7kh0zhpswvjnm32vc8vml5v5nskmnqz4c"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (properties
     `((upstream-name . "phar-io/version")))
    (synopsis "Library for handling version information and constraints")
    (description "This package contains a library for handling version information
and constraints.")
    (home-page "https://phar.io")
    (license license:bsd-3)))

(define-public php-phar-io-manifest
  (package
    (name "php-phar-io-manifest")
    (version "2.0.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/phar-io/manifest.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0r2s1qdkhn7782g1y6skxvp5w397vmwb496fymsnik2818w0q469"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (inputs
     `(("php-phar-io-version" ,php-phar-io-version)))
    (properties
     `((upstream-name . "phar-io/manifest")))
    (synopsis "PHP Archive information reader")
    (description "This package contains a component for reading phar.io manifest
information from a PHP Archive (PHAR)")
    (home-page "https://phar.io")
    (license license:bsd-3)))

(define-public php-symfony-polyfill-ctype
  (package
    (name "php-symfony-polyfill-ctype")
    (version "1.17.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/symfony/polyfill-ctype.git")
                     (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0bh22vwq2idy7fi8ajm6aggjdvds64s98y9854b5gl9s84dk9pz8"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Ctype functions for older PHP versions")
    (description "This component provides @code{ctype_*} functions to users
who run php versions without the ctype extension.")
    (home-page "https://symfony.com")
    (license license:expat)))

(define-public php-webmozart-assert
  (package
    (name "php-webmozart-assert")
    (version "1.9.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/webmozart/assert.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1q9bp4sp11r8ghdzr0qswdf1k5bf9b5s525im3kspar6y8019sh9"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (inputs
     `(("php-symfony-polyfill-ctype" ,php-symfony-polyfill-ctype)))
    (synopsis "Assertions to validate method input/output with nice error messages.")
    (description "This library contains efficient assertions to test the input
and output of PHP methods.")
    (home-page "https://github.com/webmozart/assert")
    (license license:expat)))

(define-public php-phpdocumentor-reflection-common
  (package
    (name "php-phpdocumentor-reflection-common")
    (version "2.2.0")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/phpDocumentor/ReflectionCommon.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1q685cpwbfxqy42iz61xxv6zbcc1qskn07nkipflj6c5s935l8jy"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Common reflection classes used by phpdocumentor to reflect
the code structure")
    (description "This package contains common classes used by phpdocumentor
to analyze the code structure.")
    (home-page "http://www.phpdoc.org")
    (license license:expat)))

(define-public php-phpdocumentor-type-resolver
  (package
    (name "php-phpdocumentor-type-resolver")
    (version "1.3.0")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/phpDocumentor/TypeResolver.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0wshv49z4hxraygg2vhzn0s9ih2y9ymzpcnyjfk14vcfq5yx53l9"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (inputs
     `(("php-phpdocumentor-reflection-common" ,php-phpdocumentor-reflection-common)))
    (synopsis "Resolver of class names, types and structural element names")
    (description "This package provides a PSR-5 based resolver of class names,
types and structural element names.")
    (home-page "http://www.phpdoc.org")
    (license license:expat)))

(define-public php-phpdocumentor-reflection-docblock
  (package
    (name "php-phpdocumentor-reflection-docblock")
    (version "5.1.0")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/phpDocumentor/ReflectionDocBlock.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1bsqwcq5ix7f5p56kc92pl1nqpjdpfc92pjvwyshp1syrrspa3rr"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (inputs
     `(("php-webmozart-assert" ,php-webmozart-assert)
       ("php-phpdocumentor-reflection-common" ,php-phpdocumentor-reflection-common)
       ("php-phpdocumentor-type-resolver" ,php-phpdocumentor-type-resolver)))
    (synopsis "Library for retrieving documentation in code fro the code")
    (description "With this component, a library can provide support for
annotations via DocBlocks or otherwise retrieve information that is embedded
in a DocBlock.")
    (home-page "https://github.com/phpDocumentor/ReflectionDocBlock")
    (license license:expat)))

(define-public php-theseer-tokenizer
  (package
    (name "php-theseer-tokenizer")
    (version "1.1.3")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/theseer/tokenizer.git")
                     (commit "11336f6f84e16a720dae9d8e6ed5019efa85a0f9")))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0j436a3jpynnlqrvd7la7a7smj78aklkragwa9l8p91973xra18l"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Convert PHP to XML")
    (description "This package provides a small library for converting tokenized
PHP source code into XML and potentially other formats.")
    (home-page "https://github.com/theseer/tokenizer")
    (license license:bsd-3)))

(define-public php-sebastian-code-unit-reverse-lookup
  (package
    (name "php-sebastian-code-unit-reverse-lookup")
    (version "2.0.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0lppni3qcd6gx50jf16y3n71ldj12xjd06kl9ml78zd5p2s6z4qc"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Look up function name from location")
    (description "This package provides a facility to look up which function or
method a line of code belongs to.")
    (home-page "https://github.com/sebastianbergmann/code-unit-reverse-lookup/")
    (license license:bsd-3)))

(define-public php-phpunit-php-token-stream
  (package
    (name "php-phpunit-php-token-stream")
    (version "4.0.3")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/php-token-stream.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0iv8ssvyjhgxa1qpp5s8i0j409w49s2kc9qwv1c27qgdhv7yhf7h"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Wrapper around PHP's tokenizer extension")
    (description "This library provides a wrapper around PHP's tokenizer
extension.")
    (home-page "https://github.com/sebastianbergmann/php-token-stream/")
    (license license:bsd-3)))

(define-public php-sebastian-version
  (package
    (name "php-sebastian-version")
    (version "3.0.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/version.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1kr2i6s7y4k18bz09cqj4pc4bqzph9n6ncgpqq4p4fg790h5i5ym"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "PHP versionning library")
    (description "This package is a library that helps with managing the version
number of Git-hosted PHP projects.")
    (home-page "https://github.com/sebastianbergmann/version")
    (license license:bsd-3)))

(define-public php-phpunit-php-file-iterator
  (package
    (name "php-phpunit-php-file-iterator")
    (version "3.0.4")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/php-file-iterator.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1pglbp8m4iv5w16gshlp49k4ngpsx28mhwip761kyvvd5w27ysr2"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Filter file by extension")
    (description "This package contains a @code{FilterIterator} implementation
that filters files based on a list of suffixes.")
    (home-page "https://github.com/sebastianbergmann/php-file-iterator/")
    (license license:bsd-3)))

(define-public php-phpunit-php-text-template
  (package
    (name "php-phpunit-php-text-template")
    (version "2.0.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/php-text-template.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0x38kj1xlnysg9xgad560k361l93vh32mvkyfn7rss3p2r319jhx"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Simple template engine")
    (description "This package contains a library for a simple templating engine.")
    (home-page "https://github.com/sebastianbergmann/php-text-template/")
    (license license:bsd-3)))

(define-public php-sebastian-diff
  (package
    (name "php-sebastian-diff")
    (version "4.0.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/diff.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0fr5vrmz3d1wwpf59y16fin5lgi55sjd7dqfkx0zqmsqadbjrjxq"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Diff implementation")
    (description "This package contains a PHP implementation of a diff function.")
    (home-page "https://github.com/sebastianbergmann/diff")
    (license license:bsd-3)))

(define-public php-sebastian-comparator
  (package
    (name "php-sebastian-comparator")
    (version "4.0.3")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/comparator.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1scw7vm26layqh5mzvdhjiil520fj6ipixkjnmwm036xr925iww0"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (inputs
     `(("php-sebastian-exporter" ,php-sebastian-exporter)
       ("php-sebastian-diff" ,php-sebastian-diff)))
    (synopsis "PHP value comparison")
    (description "This package provides the functionality to compare PHP values
for equality.")
    (home-page "https://github.com/sebastianbergmann/comparator")
    (license license:bsd-3)))

(define-public php-sebastian-environment
  (package
    (name "php-sebastian-environment")
    (version "5.1.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/environment.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0lhaiwk6dbwii9kmjaq3gjl2x5s1rikmxkvmy4mjvjcbi7imp38s"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Handle HHVM and PHP environments")
    (description "This package provides functionality to handle HHVM/PHP environments")
    (home-page "http://www.github.com/sebastianbergmann/environment")
    (license license:bsd-3)))

(define-public php-phpspec-prophecy
  (package
    (name "php-phpspec-prophecy")
    (version "1.11.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/phpspec/prophecy.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1pd6iz6pbfpaz5rqa36q01l569zgiqpjgqmzw3rra2qdh1jrwdy1"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (inputs
     `(("php-sebastian-recursion-context" ,php-sebastian-recursion-context)
       ("php-doctrine-instantiator" ,php-doctrine-instantiator)
       ("php-sebastian-comparator" ,php-sebastian-comparator)
       ("php-phpdocumentor-reflection-docblock"
	,php-phpdocumentor-reflection-docblock)))
    (synopsis "Mocking framework for PHP 5.3+")
    (description "This package contains a mocking framework for testing PHP
5.3+ projects.")
    (home-page "https://github.com/phpspec/prophecy")
    (license license:expat)))

(define-public php-sebastian-object-reflector
  (package
    (name "php-sebastian-object-reflector")
    (version "2.0.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/object-reflector.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1qkvp2s932h53f161l30qlnxicw4fklirmnds173wgmavms1b5yb"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "PHP reflexion library")
    (description "This package allows reflection of object attributes, including
inherited and non-public ones.")
    (home-page "https://github.com/sebastianbergmann/object-reflector/")
    (license license:bsd-3)))

(define-public php-sebastian-global-state
  (package
    (name "php-sebastian-global-state")
    (version "4.0.0")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/global-state.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0x6sfw353px5y7azipn2mb15w7w7zxbbpbv3dbhhkryrhad8w064"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (inputs
     `(("php-sebastian-recursion-context" ,php-sebastian-recursion-context)
       ("php-sebastian-object-reflector" ,php-sebastian-object-reflector)))
    (synopsis "Snapshotting of global state")
    (description "This package contains a stand-alone component originally part
of PHPUnit.  It provides support for creating a snapshot of the global state
of a PHP program.")
    (home-page "http://www.github.com/sebastianbergmann/global-state")
    (license license:bsd-3)))

(define-public php-sebastian-object-enumerator
  (package
    (name "php-sebastian-object-enumerator")
    (version "4.0.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/object-enumerator.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1qx28r0ncbh0x9i0jplyg870paxxsy7g1ibgbdqq11176101aj6q"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (inputs
     `(("php-sebastian-recursion-context" ,php-sebastian-recursion-context)
       ("php-sebastian-object-reflector" ,php-sebastian-object-reflector)))
    (synopsis "Enumerate PHP objects")
    (description "This package allows PHP programs to traverse array structures
and object graphs to enumerate all referenced objects.")
    (home-page "https://github.com/sebastianbergmann/object-enumerator/")
    (license license:bsd-3)))

(define-public php-sebastian-resource-operations
  (package
    (name "php-sebastian-resource-operations")
    (version "3.0.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/resource-operations.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "09s2gsmx6fg8sx64yyz2dszy22dcsspazlhskv3d9mflpmrk0d9y"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "List built-in PHP functions")
    (description "This package provides a list of PHP built-in functions that
operate on resources.")
    (home-page "https://www.github.com/sebastianbergmann/resource-operations")
    (license license:bsd-3)))

(define-public php-sebastian-type
  (package
    (name "php-sebastian-type")
    (version "2.2.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/type.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0gvdb9188a4903q0dnhhdcm9qd67is5pns8jbccxr7hxv8w7d7h3"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "PHP type system representation")
    (description "This package is a collection of value objects that represent
the types of the PHP type system.")
    (home-page "https://github.com/sebastianbergmann/type")
    (license license:bsd-3)))

(define-public php-phpunit-php-code-coverage
  (package
    (name "php-phpunit-php-code-coverage")
    (version "8.0.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/php-code-coverage.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1qr7x9y8636bvv0fk8hl0kl9d2y8fy6qw65kpi4yb1yyqhfddkgh"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (inputs
     `(("php-theseer-tokenizer" ,php-theseer-tokenizer)
       ("php-sebastian-version" ,php-sebastian-version)
       ("php-sebastian-environment" ,php-sebastian-environment)
       ("php-sebastian-code-unit-reverse-lookup"
	,php-sebastian-code-unit-reverse-lookup)
       ("php-phpunit-php-text-template" ,php-phpunit-php-text-template)
       ("php-phpunit-php-token-stream" ,php-phpunit-php-token-stream)
       ("php-phpunit-php-file-iterator" ,php-phpunit-php-file-iterator)))
    (synopsis "Code coverage information library")
    (description "This package is a library that provides collection,
processing, and rendering functionality for PHP code coverage information.")
    (home-page "https://github.com/sebastianbergmann/php-code-coverage")
    (license license:bsd-3)))

(define-public php-phpunit-php-timer
  (package
    (name "php-phpunit-php-timer")
    (version "5.0.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/php-timer.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0hyy5c8b22zki6836a7fhzr3s6dpvga33r2rzfrsbv1arh19ay60"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "Utility class for timing")
    (description "This package contains a stand-alone component originally part
of PHPUnit.  It provides a utility class for timing.")
    (home-page "https://github.com/sebastianbergmann/php-timer/")
    (license license:bsd-3)))

(define-public php-phpunit-php-invoker
  (package
    (name "php-phpunit-php-invoker")
    (version "3.0.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/php-invoker.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1xs7m0wiminnhkd400glmixyhrx1ir710j6fds9i03dhicfcj7db"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "PHP library for invoking functions")
    (description "This package contains a library to invoke callables with a
timeout.")
    (home-page "https://github.com/sebastianbergmann/php-invoker/")
    (license license:bsd-3)))

(define-public php-sebastian-code-unit
  (package
    (name "php-sebastian-code-unit")
    (version "1.0.5")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/code-unit.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "058ykqcmzm900c513j2qvi189bgn0scxsrhbrik5xycrr620krxc"))))
    (build-system composer-build-system)
    (arguments
     ;; We do not have phpunit yet
     `(#:tests? #f))
    (synopsis "PHP collection of value objects for code units")
    (description "This package contains a collection of value objects that
represent the PHP code units.")
    (home-page "https://github.com/sebastianbergmann/code-unit")
    (license license:bsd-3)))

(define-public php-phpunit-phpunit
  (package
    (name "phpunit")
    (version "9.2.5")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://github.com/sebastianbergmann/phpunit.git")
                     (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1ck41faxkqr6painsqirklzsl08k8biadi2ksnpsmpjf3dp5p5gl"))))
    (build-system composer-build-system)
    (arguments
     ;; Requires phpspec/prophecy-phpunit, which in turns requires phpunit.
     `(#:tests? #f))
    (inputs
     `(("php-sebastian-version" ,php-sebastian-version)
       ("php-sebastian-type" ,php-sebastian-type)
       ("php-sebastian-resource-operations" ,php-sebastian-resource-operations)
       ("php-sebastian-object-enumerator" ,php-sebastian-object-enumerator)
       ("php-sebastian-global-state" ,php-sebastian-global-state)
       ("php-sebastian-exporter" ,php-sebastian-exporter)
       ("php-sebastian-environment" ,php-sebastian-environment)
       ("php-sebastian-diff" ,php-sebastian-diff)
       ("php-sebastian-comparator" ,php-sebastian-comparator)
       ("php-sebastian-code-unit" ,php-sebastian-code-unit)
       ("php-phpunit-php-timer" ,php-phpunit-php-timer)
       ("php-phpunit-php-text-template" ,php-phpunit-php-text-template)
       ("php-phpunit-php-invoker" ,php-phpunit-php-invoker)
       ("php-phpunit-php-file-iterator" ,php-phpunit-php-file-iterator)
       ("php-phpunit-php-code-coverage" ,php-phpunit-php-code-coverage)
       ("php-phpspec-prophecy" ,php-phpspec-prophecy)
       ("php-phar-io-version" ,php-phar-io-version)
       ("php-phar-io-manifest" ,php-phar-io-manifest)
       ("php-myclabs-deep-copy" ,php-myclabs-deep-copy)
       ("php-doctrine-instantiator" ,php-doctrine-instantiator)))
    (properties `((upstream-name . "phpunit/phpunit")))
    (synopsis "PHP Unit Testing framework")
    (description "PHPUnit is a testing framework for PHP.  It is an instance of
the xUnit architecture for unit testing frameworks.")
    (home-page "https://phpunit.de/")
    (license license:bsd-3)))

debug log:

solving eebf64c1a3 ...
found eebf64c1a3 in https://yhetil.org/guix-patches/20200712222538.18092-34-julien@lepiller.eu/
found 0ae92c4600 in https://yhetil.org/guix-patches/20200712222538.18092-33-julien@lepiller.eu/
found 484fb17790 in https://yhetil.org/guix-patches/20200712222538.18092-32-julien@lepiller.eu/
found 1b6669abcc in https://yhetil.org/guix-patches/20200712222538.18092-31-julien@lepiller.eu/
found 2d186c5190 in https://yhetil.org/guix-patches/20200712222538.18092-30-julien@lepiller.eu/
found 9a50c431b7 in https://yhetil.org/guix-patches/20200712222538.18092-29-julien@lepiller.eu/
found aee08c0878 in https://yhetil.org/guix-patches/20200712222538.18092-28-julien@lepiller.eu/
found 8cf5668030 in https://yhetil.org/guix-patches/20200712222538.18092-27-julien@lepiller.eu/
found 4872523b31 in https://yhetil.org/guix-patches/20200712222538.18092-26-julien@lepiller.eu/
found 899f6a3f69 in https://yhetil.org/guix-patches/20200712222538.18092-25-julien@lepiller.eu/
found 8c96d9aabc in https://yhetil.org/guix-patches/20200712222538.18092-24-julien@lepiller.eu/
found 9ee823bcda in https://yhetil.org/guix-patches/20200712222538.18092-23-julien@lepiller.eu/
found aff2ed79a7 in https://yhetil.org/guix-patches/20200712222538.18092-22-julien@lepiller.eu/
found ccc613baaf in https://yhetil.org/guix-patches/20200712222538.18092-21-julien@lepiller.eu/
found b5abcaae36 in https://yhetil.org/guix-patches/20200712222538.18092-20-julien@lepiller.eu/
found 5d06bea0cb in https://yhetil.org/guix-patches/20200712222538.18092-19-julien@lepiller.eu/
found 906a88d49e in https://yhetil.org/guix-patches/20200712222538.18092-18-julien@lepiller.eu/
found 344c413d2c in https://yhetil.org/guix-patches/20200712222538.18092-17-julien@lepiller.eu/
found 13584273f9 in https://yhetil.org/guix-patches/20200712222538.18092-16-julien@lepiller.eu/
found f54b875d92 in https://yhetil.org/guix-patches/20200712222538.18092-15-julien@lepiller.eu/
found df9c490bbf in https://yhetil.org/guix-patches/20200712222538.18092-14-julien@lepiller.eu/
found 93d8649bee in https://yhetil.org/guix-patches/20200712222538.18092-13-julien@lepiller.eu/
found 9b604c46f0 in https://yhetil.org/guix-patches/20200712222538.18092-12-julien@lepiller.eu/
found ffc2eb7b11 in https://yhetil.org/guix-patches/20200712222538.18092-11-julien@lepiller.eu/
found 51e51ac51b in https://yhetil.org/guix-patches/20200712222538.18092-10-julien@lepiller.eu/
found f0f4fe650a in https://yhetil.org/guix-patches/20200712222538.18092-9-julien@lepiller.eu/
found 0b64efe6ca in https://yhetil.org/guix-patches/20200712222538.18092-8-julien@lepiller.eu/
found a45726a484 in https://yhetil.org/guix-patches/20200712222538.18092-7-julien@lepiller.eu/
found ae7d7ff6b2 in https://yhetil.org/guix-patches/20200712222538.18092-6-julien@lepiller.eu/
found b04b8e0859 in https://yhetil.org/guix-patches/20200712222538.18092-5-julien@lepiller.eu/
found 28d8909dad in https://yhetil.org/guix-patches/20200712222538.18092-4-julien@lepiller.eu/
found dab660f84f in https://yhetil.org/guix-patches/20200712222538.18092-2-julien@lepiller.eu/ ||
	https://yhetil.org/guix-patches/a2045c10b011d77cb507b0d965cb1ab3c8ad2383.1695724304.git.ngraves@ngraves.fr/ ||
	https://yhetil.org/guix-patches/099bcd2b-ed5b-6d5d-b7cf-c5aeef255c6d@disroot.org/

applying [1/32] https://yhetil.org/guix-patches/20200712222538.18092-2-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
new file mode 100644
index 0000000000..dab660f84f

Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.

skipping https://yhetil.org/guix-patches/a2045c10b011d77cb507b0d965cb1ab3c8ad2383.1695724304.git.ngraves@ngraves.fr/ for dab660f84f
skipping https://yhetil.org/guix-patches/099bcd2b-ed5b-6d5d-b7cf-c5aeef255c6d@disroot.org/ for dab660f84f
index at:
100644 dab660f84fe0406a62847188fe1e16eab830becf	gnu/packages/php-xyz.scm

applying [2/32] https://yhetil.org/guix-patches/20200712222538.18092-4-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index dab660f84f..28d8909dad 100644


applying [3/32] https://yhetil.org/guix-patches/20200712222538.18092-5-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 28d8909dad..b04b8e0859 100644


applying [4/32] https://yhetil.org/guix-patches/20200712222538.18092-6-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index b04b8e0859..ae7d7ff6b2 100644


applying [5/32] https://yhetil.org/guix-patches/20200712222538.18092-7-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index ae7d7ff6b2..a45726a484 100644


applying [6/32] https://yhetil.org/guix-patches/20200712222538.18092-8-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index a45726a484..0b64efe6ca 100644


applying [7/32] https://yhetil.org/guix-patches/20200712222538.18092-9-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 0b64efe6ca..f0f4fe650a 100644


applying [8/32] https://yhetil.org/guix-patches/20200712222538.18092-10-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index f0f4fe650a..51e51ac51b 100644


applying [9/32] https://yhetil.org/guix-patches/20200712222538.18092-11-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 51e51ac51b..ffc2eb7b11 100644


applying [10/32] https://yhetil.org/guix-patches/20200712222538.18092-12-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index ffc2eb7b11..9b604c46f0 100644


applying [11/32] https://yhetil.org/guix-patches/20200712222538.18092-13-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 9b604c46f0..93d8649bee 100644


applying [12/32] https://yhetil.org/guix-patches/20200712222538.18092-14-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 93d8649bee..df9c490bbf 100644


applying [13/32] https://yhetil.org/guix-patches/20200712222538.18092-15-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index df9c490bbf..f54b875d92 100644


applying [14/32] https://yhetil.org/guix-patches/20200712222538.18092-16-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index f54b875d92..13584273f9 100644


applying [15/32] https://yhetil.org/guix-patches/20200712222538.18092-17-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 13584273f9..344c413d2c 100644


applying [16/32] https://yhetil.org/guix-patches/20200712222538.18092-18-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 344c413d2c..906a88d49e 100644


applying [17/32] https://yhetil.org/guix-patches/20200712222538.18092-19-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 906a88d49e..5d06bea0cb 100644


applying [18/32] https://yhetil.org/guix-patches/20200712222538.18092-20-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 5d06bea0cb..b5abcaae36 100644


applying [19/32] https://yhetil.org/guix-patches/20200712222538.18092-21-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index b5abcaae36..ccc613baaf 100644


applying [20/32] https://yhetil.org/guix-patches/20200712222538.18092-22-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index ccc613baaf..aff2ed79a7 100644


applying [21/32] https://yhetil.org/guix-patches/20200712222538.18092-23-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index aff2ed79a7..9ee823bcda 100644


applying [22/32] https://yhetil.org/guix-patches/20200712222538.18092-24-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 9ee823bcda..8c96d9aabc 100644


applying [23/32] https://yhetil.org/guix-patches/20200712222538.18092-25-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 8c96d9aabc..899f6a3f69 100644


applying [24/32] https://yhetil.org/guix-patches/20200712222538.18092-26-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 899f6a3f69..4872523b31 100644


applying [25/32] https://yhetil.org/guix-patches/20200712222538.18092-27-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 4872523b31..8cf5668030 100644


applying [26/32] https://yhetil.org/guix-patches/20200712222538.18092-28-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 8cf5668030..aee08c0878 100644


applying [27/32] https://yhetil.org/guix-patches/20200712222538.18092-29-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index aee08c0878..9a50c431b7 100644


applying [28/32] https://yhetil.org/guix-patches/20200712222538.18092-30-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 9a50c431b7..2d186c5190 100644


applying [29/32] https://yhetil.org/guix-patches/20200712222538.18092-31-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 2d186c5190..1b6669abcc 100644


applying [30/32] https://yhetil.org/guix-patches/20200712222538.18092-32-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 1b6669abcc..484fb17790 100644


applying [31/32] https://yhetil.org/guix-patches/20200712222538.18092-33-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 484fb17790..0ae92c4600 100644


applying [32/32] https://yhetil.org/guix-patches/20200712222538.18092-34-julien@lepiller.eu/
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 0ae92c4600..eebf64c1a3 100644

Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.
Checking patch gnu/packages/php-xyz.scm...
Applied patch gnu/packages/php-xyz.scm cleanly.

index at:
100644 eebf64c1a3451320b499e83760be82f59a640865	gnu/packages/php-xyz.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).