-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.lock
1372 lines (1372 loc) · 53.4 KB
/
composer.lock
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
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"_readme": [
"This file locks the dependencies of your project to a known state",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "1e3d56218e9c01a4266ddf240ce79950",
"packages": [
{
"name": "bearsaturday/bearsaturday",
"version": "0.10.x-dev",
"source": {
"type": "git",
"url": "https://github.com/bearsaturday/BEAR.Saturday.git",
"reference": "4a4985117a783f9d0430ba2ebf6688febcf41ebf"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/bearsaturday/BEAR.Saturday/zipball/4a4985117a783f9d0430ba2ebf6688febcf41ebf",
"reference": "4a4985117a783f9d0430ba2ebf6688febcf41ebf",
"shasum": ""
},
"require": {
"bearsaturday/panda": "~0.4",
"mustangostang/spyc": "^0.6.2",
"openpsa/quickform": "^3.3.2.1",
"pear-pear.php.net/cache_lite": "^1.8",
"pear-pear.php.net/config": "^1.10",
"pear-pear.php.net/console_color": "^1.0",
"pear-pear.php.net/console_commandline": "^1.2",
"pear-pear.php.net/console_table": "^1.3",
"pear-pear.php.net/file": "^1.4",
"pear-pear.php.net/file_searchreplace": "^1.1",
"pear-pear.php.net/html_css": "^1.5",
"pear-pear.php.net/http_request2": "^2.3",
"pear-pear.php.net/http_session2": "^0.7",
"pear-pear.php.net/i18n_unicodestring": "^0.3",
"pear-pear.php.net/log": "^1.13",
"pear-pear.php.net/mdb2": "~2.5.0b5",
"pear-pear.php.net/mdb2_driver_mysqli": "~1.5.0b4",
"pear-pear.php.net/net_server": "^1.0",
"pear-pear.php.net/net_useragent_mobile": "^1.0",
"pear-pear.php.net/pager": "^2.4",
"pear-pear.php.net/services_json": "^1.0",
"pear-pear.php.net/spreadsheet_excel_writer": "^0.9",
"pear-pear.php.net/text_highlighter": "^0.8",
"pear-pear.php.net/var_dump": "^1.0",
"pear-pear.php.net/xml_rpc": "^1.5",
"pear-pear.php.net/xml_rss": "^1.1",
"pear-pear.php.net/xml_serializer": "^0.21",
"php": ">=5.4",
"satomif/session_register": "^0.0.1",
"satomif/session_unregister": "^0.0.1",
"smarty/smarty": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.7"
},
"bin": [
"BEAR/BEAR/bin/bear.php"
],
"type": "library",
"extra": {
"branch-alias": {
"dev-php7": "0.10.x-dev"
}
},
"autoload": {
"classmap": [
"BEAR"
],
"files": [
"BEAR.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"include-path": [
"./"
],
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Akihito Koriyama",
"email": "[email protected]"
}
],
"description": "BEAR.Saturday framework ",
"keywords": [
"BEAR.Saturday",
"framework"
],
"time": "2018-06-14T10:53:53+00:00"
},
{
"name": "bearsaturday/panda",
"version": "0.5.1",
"source": {
"type": "git",
"url": "https://github.com/bearsaturday/Panda.git",
"reference": "226e51ac69a3bfa2cf6132717705cdc04a72c952"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/bearsaturday/Panda/zipball/226e51ac69a3bfa2cf6132717705cdc04a72c952",
"reference": "226e51ac69a3bfa2cf6132717705cdc04a72c952",
"shasum": ""
},
"require": {
"pear-pear.php.net/pear": "^1.10",
"php": ">=7.0.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"type": "library",
"autoload": {
"classmap": [
"Panda"
],
"files": [
"./Panda.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Akihito Koriyama",
"email": "[email protected]"
}
],
"description": "Panda is a PHP error handler.",
"time": "2018-06-14T06:53:17+00:00"
},
{
"name": "mustangostang/spyc",
"version": "0.6.2",
"source": {
"type": "git",
"url": "https://github.com/mustangostang/spyc.git",
"reference": "23c35ae854d835f2d7bcc3e3ad743d7e57a8c14d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/mustangostang/spyc/zipball/23c35ae854d835f2d7bcc3e3ad743d7e57a8c14d",
"reference": "23c35ae854d835f2d7bcc3e3ad743d7e57a8c14d",
"shasum": ""
},
"require": {
"php": ">=5.3.1"
},
"require-dev": {
"phpunit/phpunit": "4.3.*@dev"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "0.5.x-dev"
}
},
"autoload": {
"files": [
"Spyc.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "mustangostang",
"email": "[email protected]"
}
],
"description": "A simple YAML loader/dumper class for PHP",
"homepage": "https://github.com/mustangostang/spyc/",
"keywords": [
"spyc",
"yaml",
"yml"
],
"time": "2017-02-24T16:06:33+00:00"
},
{
"name": "openpsa/quickform",
"version": "v3.3.2.1",
"source": {
"type": "git",
"url": "https://github.com/flack/quickform.git",
"reference": "c109f7694dac45497fc6486390faa741c163a190"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/flack/quickform/zipball/c109f7694dac45497fc6486390faa741c163a190",
"reference": "c109f7694dac45497fc6486390faa741c163a190",
"shasum": ""
},
"require": {
"php": ">5.3"
},
"type": "library",
"autoload": {
"classmap": [
"lib"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"PHP-3.01"
],
"authors": [
{
"name": "Andreas Flack",
"email": "[email protected]",
"homepage": "http://www.contentcontrol-berlin.de/"
}
],
"description": "PHP 5.4 compatible fork of HTML_QuickForm",
"keywords": [
"form",
"quickform"
],
"time": "2018-05-22T18:30:23+00:00"
},
{
"name": "pear-pear.php.net/Archive_Tar",
"version": "1.4.3",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Archive_Tar-1.4.3.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=5.2.0.0"
},
"replace": {
"pear-pear/archive_tar": "== 1.4.3.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"New BSD License"
],
"description": "This class provides handling of tar files in PHP.\nIt supports creating, listing, extracting and adding to tar files.\nGzip support is available if PHP has the zlib extension built-in or\nloaded. Bz2 compression is also supported with the bz2 extension loaded."
},
{
"name": "pear-pear.php.net/Cache_Lite",
"version": "1.8.2",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Cache_Lite-1.8.2.tgz",
"reference": null,
"shasum": null
},
"require": {
"pear-pear.php.net/pear": ">=1.10.1.0",
"php": ">=5.4.0.0"
},
"replace": {
"pear-pear/cache_lite": "== 1.8.2.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"lgpl"
],
"description": "This package is a little cache system optimized for file containers. It is fast and safe (because it\n uses file locking and/or anti-corruption tests)."
},
{
"name": "pear-pear.php.net/Config",
"version": "1.10.12",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Config-1.10.12.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=4.3.0.0"
},
"replace": {
"pear-pear/config": "== 1.10.12.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"PHP License"
],
"description": "The Config package provides methods for configuration manipulation.\n* Creates configurations from scratch\n* Parses and outputs different formats (XML, PHP, INI, Apache...)\n* Edits existing configurations\n* Converts configurations to other formats\n* Allows manipulation of sections, comments, directives...\n* Parses configurations into a tree structure\n* Provides XPath like access to directives"
},
{
"name": "pear-pear.php.net/Console_Color",
"version": "1.0.3",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Console_Color-1.0.3.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=4.0.0.0"
},
"replace": {
"pear-pear/console_color": "== 1.0.3.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"MIT"
],
"description": "You can use Console_Color::convert to transform colorcodes like %r into ANSI\ncontrol codes. print Console_Color::convert("%rHello World!%n"); would print\n"Hello World" in red, for example."
},
{
"name": "pear-pear.php.net/Console_CommandLine",
"version": "1.2.2",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Console_CommandLine-1.2.2.tgz",
"reference": null,
"shasum": null
},
"require": {
"ext-dom": "*",
"ext-xml": "*",
"php": ">=5.3.0.0"
},
"replace": {
"pear-pear/console_commandline": "== 1.2.2.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"MIT"
],
"description": "Console_CommandLine is a full featured package for managing command-line \noptions and arguments highly inspired from python optparse module, it allows \nthe developer to easily build complex command line interfaces.\n\nMain features:\n * handles sub commands (ie. $ myscript.php -q subcommand -f file),\n * can be completely built from an xml definition file,\n * generate --help and --version options automatically,\n * can be completely customized,\n * builtin support for i18n,\n * and much more..."
},
{
"name": "pear-pear.php.net/Console_Getopt",
"version": "1.4.1",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Console_Getopt-1.4.1.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=5.4.0.0"
},
"replace": {
"pear-pear/console_getopt": "== 1.4.1.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"BSD-2-Clause"
],
"description": "This is a PHP implementation of "getopt" supporting both\nshort and long options."
},
{
"name": "pear-pear.php.net/Console_Table",
"version": "1.3.1",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Console_Table-1.3.1.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=5.2.0.0"
},
"replace": {
"pear-pear/console_table": "== 1.3.1.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"BSD"
],
"description": "Provides a Console_Table class with methods such as addRow(), insertRow(), addCol() etc. to build console tables with or without headers and with user defined table rules, padding, and alignment."
},
{
"name": "pear-pear.php.net/File",
"version": "1.4.1",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/File-1.4.1.tgz",
"reference": null,
"shasum": null
},
"require": {
"ext-pcre": "*",
"php": ">=4.3.0.0"
},
"replace": {
"pear-pear/file": "== 1.4.1.0"
},
"suggest": {
"*-pear-pear.php.net/File_CSV": "*",
"*-pear-pear.php.net/File_Util": "*"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"PHP"
],
"description": "Provides easy access to read/write to files along with\nsome common routines to deal with paths."
},
{
"name": "pear-pear.php.net/File_SearchReplace",
"version": "1.1.4",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/File_SearchReplace-1.1.4.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=4.3.0.0"
},
"replace": {
"pear-pear/file_searchreplace": "== 1.1.4.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"BSD"
],
"description": "Provides various functions to perform replace\non files. Preg/Ereg regex supported along with faster, but more basic str_replace routine."
},
{
"name": "pear-pear.php.net/HTML_CSS",
"version": "1.5.4",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/HTML_CSS-1.5.4.tgz",
"reference": null,
"shasum": null
},
"require": {
"ext-pcre": "*",
"pear-pear.php.net/html_common": ">=1.2.4.0",
"php": ">=4.3.0.0"
},
"replace": {
"pear-pear/html_css": "== 1.5.4.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"BSD"
],
"description": "HTML_CSS provides a simple interface to handle stylesheets declaration.\nIt is completely standards compliant, and has some great features:\n* Simple OO interface to CSS definitions\n* Can parse existing CSS (string or file)\n* Output to\n - Inline stylesheet declarations\n - Document internal stylesheet declarations\n - Standalone stylesheet declarations\n - Array of definitions\n - File\n* Can validate contents with the WC3 CSS Validator Web Service\n\nIn addition, it shares the following with HTML_Common based classes:\n* Indent style support\n* Line ending style"
},
{
"name": "pear-pear.php.net/HTML_Common",
"version": "1.2.5",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/HTML_Common-1.2.5.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=4.0.4.0"
},
"replace": {
"pear-pear/html_common": "== 1.2.5.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"PHP License"
],
"description": "The PEAR::HTML_Common package provides methods for html code display and attributes handling.\n* Methods to set, remove, update html attributes.\n* Handles comments in HTML code.\n* Handles layout, tabs, line endings for nicer HTML code."
},
{
"name": "pear-pear.php.net/HTTP_Request2",
"version": "2.3.0",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/HTTP_Request2-2.3.0.tgz",
"reference": null,
"shasum": null
},
"require": {
"pear-pear.php.net/net_url2": ">=2.2.0.0",
"pear-pear.php.net/pear": ">=1.9.2.0",
"php": ">=5.2.0.0"
},
"replace": {
"pear-pear/http_request2": "== 2.3.0.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"BSD 3-Clause License"
],
"description": "PHP5 rewrite of HTTP_Request package (with parts of HTTP_Client). Provides\ncleaner API and pluggable Adapters:\n * Socket adapter, based on old HTTP_Request code,\n * Curl adapter, wraps around PHP's cURL extension,\n * Mock adapter, to use for testing packages dependent on HTTP_Request2.\nSupports POST requests with data and file uploads, basic and digest\nauthentication, cookies, managing cookies across requests, proxies, gzip and\ndeflate encodings, redirects, monitoring the request progress with Observers..."
},
{
"name": "pear-pear.php.net/HTTP_Session2",
"version": "0.7.3",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/HTTP_Session2-0.7.3.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=5.2.0.0"
},
"replace": {
"pear-pear/http_session2": "== 0.7.3.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"The BSD License"
],
"description": "PHP5 Object-oriented interface to the session_* family functions it provides extra features such as database storage for session data using DB/MDB2 packages.\n\nSupported containers are PEAR::DB, PEAR::MDB2 and Memcache.\n\nHTTP_Session2 introduces new methods such as isNew(), useCookies(), setExpire(), setIdle(), isExpired(), isIdled() and more."
},
{
"name": "pear-pear.php.net/I18N_UnicodeString",
"version": "0.3.1",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/I18N_UnicodeString-0.3.1.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=5.0.0.0"
},
"replace": {
"pear-pear/i18n_unicodestring": "== 0.3.1.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"BSD"
],
"description": "Provides a method of storing and manipulating multibyte strings in PHP without using ext/mbstring. Also allows conversion between various methods of storing Unicode in 8 byte strings like UTF-8 and HTML entities."
},
{
"name": "pear-pear.php.net/Log",
"version": "1.13.1",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Log-1.13.1.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=5.0.0.0"
},
"replace": {
"pear-pear/log": "== 1.13.1.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"MIT License"
],
"description": "The Log package provides an abstracted logging framework. It includes output handlers for log files, databases, syslog, email, Firebug, and the console. It also provides composite and subject-observer logging mechanisms."
},
{
"name": "pear-pear.php.net/MDB2",
"version": "2.5.0b5",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/MDB2-2.5.0b5.tgz",
"reference": null,
"shasum": null
},
"require": {
"pear-pear.php.net/pear": ">=1.3.6.0",
"php": ">=5.2.0.0"
},
"replace": {
"pear-pear/mdb2": "== 2.5.0.0-beta5"
},
"suggest": {
"fbsql-pear-pear.php.net/MDB2_Driver_fbsql": ">=0.3.0.0",
"ibase-pear-pear.php.net/MDB2_Driver_ibase": ">=1.5.0.0",
"mssql-pear-pear.php.net/MDB2_Driver_mssql": ">=1.5.0.0",
"mysql-pear-pear.php.net/MDB2_Driver_mysql": ">=1.5.0.0",
"mysqli-pear-pear.php.net/MDB2_Driver_mysqli": ">=1.5.0.0",
"oci8-pear-pear.php.net/MDB2_Driver_oci8": ">=1.5.0.0",
"odbc-pear-pear.php.net/MDB2_Driver_odbc": ">=0.2.0.0",
"pgsql-pear-pear.php.net/MDB2_Driver_pgsql": ">=1.5.0.0",
"querysim-pear-pear.php.net/MDB2_Driver_querysim": ">=0.7.0.0",
"sqlite-pear-pear.php.net/MDB2_Driver_sqlite": ">=1.5.0.0",
"sqlsrv-pear-pear.php.net/MDB2_Driver_sqlsrv": ">=1.5.0.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"BSD License"
],
"description": "PEAR MDB2 is a merge of the PEAR DB and Metabase php database abstraction layers.\n\nIt provides a common API for all supported RDBMS. The main difference to most\nother DB abstraction packages is that MDB2 goes much further to ensure\nportability. MDB2 provides most of its many features optionally that\ncan be used to construct portable SQL statements:\n* Object-Oriented API\n* A DSN (data source name) or array format for specifying database servers\n* Datatype abstraction and on demand datatype conversion\n* Various optional fetch modes to fix portability issues\n* Portable error codes\n* Sequential and non sequential row fetching as well as bulk fetching\n* Ability to make buffered and unbuffered queries\n* Ordered array and associative array for the fetched rows\n* Prepare/execute (bind) named and unnamed placeholder emulation\n* Sequence/autoincrement emulation\n* Replace emulation\n* Limited sub select emulation\n* Row limit emulation\n* Transactions/savepoint support\n* Large Object support\n* Index/Unique Key/Primary Key support\n* Pattern matching abstraction\n* Module framework to load advanced functionality on demand\n* Ability to read the information schema\n* RDBMS management methods (creating, dropping, altering)\n* Reverse engineering schemas from an existing database\n* SQL function call abstraction\n* Full integration into the PEAR Framework\n* PHPDoc API documentation"
},
{
"name": "pear-pear.php.net/MDB2_Driver_mysqli",
"version": "1.5.0b4",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/MDB2_Driver_mysqli-1.5.0b4.tgz",
"reference": null,
"shasum": null
},
"require": {
"ext-mysqli": "*",
"pear-pear.php.net/mdb2": ">=2.5.0.0",
"php": ">=5.2.0.0"
},
"replace": {
"pear-pear/mdb2_driver_mysqli": "== 1.5.0.0-beta4"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"BSD License"
],
"description": "This is the MySQLi MDB2 driver."
},
{
"name": "pear-pear.php.net/Net_Server",
"version": "1.0.3",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Net_Server-1.0.3.tgz",
"reference": null,
"shasum": null
},
"require": {
"ext-sockets": "*",
"pear-pear.php.net/pear": "*",
"php": ">=4.2.0.0"
},
"replace": {
"pear-pear/net_server": "== 1.0.3.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"PHP License"
],
"description": "Generic server class based on ext/sockets, used to develop any kind of server."
},
{
"name": "pear-pear.php.net/Net_URL2",
"version": "2.2.1",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Net_URL2-2.2.1.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=5.1.4.0"
},
"replace": {
"pear-pear/net_url2": "== 2.2.1.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"BSD-3-Clause"
],
"description": "Provides parsing of URLs into their constituent parts (scheme, host, path etc.), URL generation, and resolving of\n relative URLs."
},
{
"name": "pear-pear.php.net/Net_UserAgent_Mobile",
"version": "1.0.0",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Net_UserAgent_Mobile-1.0.0.tgz",
"reference": null,
"shasum": null
},
"require": {
"ext-pcre": "*",
"pear-pear.php.net/pear": ">=1.4.3.0",
"php": ">=4.3.0.0"
},
"replace": {
"pear-pear/net_useragent_mobile": "== 1.0.0.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"New BSD License"
],
"description": "Net_UserAgent_Mobile parses HTTP_USER_AGENT strings of (mainly Japanese) mobile HTTP user agents. It'll be useful in page dispatching by user agents.\nThis package was ported from Perl's HTTP::MobileAgent.\nSee http://search.cpan.org/search?mode=module&query=HTTP-MobileAgent"
},
{
"name": "pear-pear.php.net/OLE",
"version": "1.0.0RC3",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/OLE-1.0.0RC3.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=5.0.0.0"
},
"replace": {
"pear-pear/ole": "== 1.0.0.0-RC3"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"PHP"
],
"description": "This package allows reading and writing of OLE (Object Linking and Embedding) compound documents. This format is used as container for Excel (.xls), Word (.doc) and other Microsoft file formats."
},
{
"name": "pear-pear.php.net/PEAR",
"version": "1.10.5",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/PEAR-1.10.5.tgz",
"reference": null,
"shasum": null
},
"require": {
"ext-pcre": "*",
"ext-xml": "*",
"pear-pear.php.net/archive_tar": ">=1.4.0.0",
"pear-pear.php.net/console_getopt": ">=1.4.1.0",
"pear-pear.php.net/structures_graph": ">=1.1.0.0",
"pear-pear.php.net/xml_util": ">=1.3.0.0",
"php": ">=5.4.0.0"
},
"conflict": {
"pear-pear.php.net/pear_frontend_gtk": "<0.4.0.0",
"pear-pear.php.net/pear_frontend_web": "<=0.4.0.0"
},
"replace": {
"pear-pear/pear": "== 1.10.5.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"New BSD License"
],
"description": "The PEAR package contains:\n * the PEAR installer, for creating, distributing\n and installing packages\n * the PEAR_Exception PHP5 error handling mechanism\n * the PEAR_ErrorStack advanced error handling mechanism\n * the PEAR_Error error handling mechanism\n * the OS_Guess class for retrieving info about the OS\n where PHP is running on\n * the System class for quick handling of common operations\n with files and directories\n * the PEAR base class\n Features in a nutshell:\n * full support for channels\n * pre-download dependency validation\n * new package.xml 2.0 format allows tremendous flexibility while maintaining BC\n * support for optional dependency groups and limited support for sub-packaging\n * robust dependency support\n * full dependency validation on uninstall\n * remote install for hosts with only ftp access - no more problems with\n restricted host installation\n * full support for mirroring\n * support for bundling several packages into a single tarball\n * support for static dependencies on a url-based package\n * support for custom file roles and installation tasks"
},
{
"name": "pear-pear.php.net/Pager",
"version": "2.5.1",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Pager-2.5.1.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=5.6.0.0"
},
"replace": {
"pear-pear/pager": "== 2.5.1.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"BSD"
],
"description": "It takes an array of data as input and pages it according to various parameters.\nIt also builds links within a specified range, and allows complete customization of the output (it even works with front controllers and mod_rewrite).\nTwo operating modes available: \"Jumping\" and \"Sliding\" window style."
},
{
"name": "pear-pear.php.net/Services_JSON",
"version": "1.0.3",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Services_JSON-1.0.3.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=4.3.0.0"
},
"replace": {
"pear-pear/services_json": "== 1.0.3.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"BSD"
],
"description": "JSON (JavaScript Object Notation, http://json.org) is a lightweight data-interchange format. \n It is easy for humans to read and write. It is easy for machines to parse and generate. \n It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. \n This feature can also be found in Python. JSON is a text format that is completely language independent \n but uses conventions that are familiar to programmers of the C-family of languages, including\n C, C++, C#, Java, JavaScript, Perl, TCL, and many others. These properties make JSON an ideal\n data-interchange language.\n\n This package provides a simple encoder and decoder for JSON notation. It is intended for use\n with client-side Javascript applications that make use of HTTPRequest to perform server \n communication functions - data can be encoded into JSON notation for use in a client-side\n javascript, or decoded from incoming Javascript requests. JSON format is native to Javascript, \n and can be directly eval()'ed with no further parsing overhead."
},
{
"name": "pear-pear.php.net/Spreadsheet_Excel_Writer",
"version": "0.9.4",
"dist": {
"type": "file",
"url": "https://pear.php.net/get/Spreadsheet_Excel_Writer-0.9.4.tgz",
"reference": null,
"shasum": null
},
"require": {
"pear-pear.php.net/ole": ">=1.0.0.0",
"php": ">=5.3.3.0"
},
"replace": {
"pear-pear/spreadsheet_excel_writer": "== 0.9.4.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"license": [
"LGPL"
],
"description": "Spreadsheet_Excel_Writer was born as a porting of the Spreadsheet::WriteExcel Perl module to PHP.\n It allows writing of Excel spreadsheets without the need for COM objects.\n It supports formulas, images (BMP) and all kinds of formatting for text and cells.\n It currently supports the BIFF5 format (Excel 5.0), so functionality appeared in the latest Excel versions is not yet available.\n\nInstall latest development version with Composer:\n\ncomposer require pear/spreadsheet_excel_writer:dev-master\n\nWith PEAR installer:\n\ncd /tmp \ngit clone https://github.com/pear/Spreadsheet_Excel_Writer \nsudo pear upgrade -f Spreadsheet_Excel_Writer/package.xml"
},
{
"name": "pear-pear.php.net/Structures_Graph",
"version": "1.1.1",