forked from EC-CUBE/ec-cube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.lock
2447 lines (2447 loc) · 91.2 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 http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
"hash": "a787e0f84ce82282248e4b110ea2c2a4",
"packages": [
{
"name": "mobiledetect/mobiledetectlib",
"version": "2.8.11",
"source": {
"type": "git",
"url": "https://github.com/serbanghita/Mobile-Detect.git",
"reference": "c68901fb09227dcf04872f0d6a27b9f6e75ecf1f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/c68901fb09227dcf04872f0d6a27b9f6e75ecf1f",
"reference": "c68901fb09227dcf04872f0d6a27b9f6e75ecf1f",
"shasum": ""
},
"require": {
"php": ">=5.0.0"
},
"require-dev": {
"johnkary/phpunit-speedtrap": "~1.0@dev",
"phpunit/phpunit": "*"
},
"type": "library",
"autoload": {
"classmap": [
"Mobile_Detect.php"
],
"psr-0": {
"Detection": "namespaced/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Serban Ghita",
"email": "[email protected]",
"homepage": "http://mobiledetect.net",
"role": "Developer"
}
],
"description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
"homepage": "https://github.com/serbanghita/Mobile-Detect",
"keywords": [
"detect mobile devices",
"mobile",
"mobile detect",
"mobile detector",
"php mobile detect"
],
"time": "2014-11-23 13:08:17"
},
{
"name": "pear-pear.php.net/Archive_Tar",
"version": "1.3.13",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/Archive_Tar-1.3.13.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=4.3.0.0"
},
"replace": {
"pear-pear/archive_tar": "== 1.3.13.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"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.7.16",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/Cache_Lite-1.7.16.tgz",
"reference": null,
"shasum": null
},
"require": {
"pear-pear.php.net/pear": "*",
"php": ">=4.0.0.0"
},
"replace": {
"pear-pear/cache_lite": "== 1.7.16.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"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/Calendar",
"version": "0.5.5",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/Calendar-0.5.5.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=5.0.0.0"
},
"replace": {
"pear-pear/calendar": "== 0.5.5.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "Calendar provides an API for building Calendar data structures. Using\nthe simple iterator and it's "query" API, a user interface can easily be\nbuilt on top of the calendar data structure, at the same time easily connecting it\nto some kind of underlying data store, where "event" information is\nbeing held.\n\nIt provides different calculation "engines" the default being based on\nUnix timestamps (offering fastest performance) with an alternative using PEAR::Date\nwhich extends the calendar past the limitations of Unix timestamps. Other engines\nshould be implementable for other types of calendar (e.g. a Chinese Calendar based\non lunar cycles)."
},
{
"name": "pear-pear.php.net/Console_Getopt",
"version": "1.3.1",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/Console_Getopt-1.3.1.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=4.3.0.0"
},
"replace": {
"pear-pear/console_getopt": "== 1.3.1.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "This is a PHP implementation of "getopt" supporting both\nshort and long options."
},
{
"name": "pear-pear.php.net/File_SearchReplace",
"version": "1.1.4",
"dist": {
"type": "file",
"url": "http://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": [
"/"
],
"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/HTTP_Request",
"version": "1.4.4",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/HTTP_Request-1.4.4.tgz",
"reference": null,
"shasum": null
},
"require": {
"pear-pear.php.net/net_socket": ">=1.0.7.0",
"pear-pear.php.net/net_url": ">=1.0.12.0",
"php": ">=4.2.0.0"
},
"replace": {
"pear-pear/http_request": "== 1.4.4.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "Supports GET/POST/HEAD/TRACE/PUT/DELETE, Basic authentication, Proxy,\nProxy Authentication, SSL, file uploads etc."
},
{
"name": "pear-pear.php.net/MDB2",
"version": "2.5.0b5",
"dist": {
"type": "file",
"url": "http://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": [
"/"
],
"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_mysql",
"version": "1.5.0b4",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/MDB2_Driver_mysql-1.5.0b4.tgz",
"reference": null,
"shasum": null
},
"require": {
"ext-mysql": "*",
"pear-pear.php.net/mdb2": ">=2.5.0.0",
"php": ">=5.2.0.0"
},
"replace": {
"pear-pear/mdb2_driver_mysql": "== 1.5.0.0-beta4"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "This is the MySQL MDB2 driver."
},
{
"name": "pear-pear.php.net/MDB2_Driver_pgsql",
"version": "1.5.0b4",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/MDB2_Driver_pgsql-1.5.0b4.tgz",
"reference": null,
"shasum": null
},
"require": {
"ext-pgsql": "*",
"pear-pear.php.net/mdb2": ">=2.5.0.0",
"php": ">=5.2.0.0"
},
"replace": {
"pear-pear/mdb2_driver_pgsql": "== 1.5.0.0-beta4"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "This is the PostgreSQL MDB2 driver."
},
{
"name": "pear-pear.php.net/Mail",
"version": "1.2.0",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/Mail-1.2.0.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=4.4.9.0"
},
"replace": {
"pear-pear/mail": "== 1.2.0.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "PEAR's Mail package defines an interface for implementing mailers under the PEAR hierarchy. It also provides supporting functions useful to multiple mailer backends. Currently supported backends include: PHP's native mail() function, sendmail, and SMTP. This package also provides a RFC822 email address list validation utility class."
},
{
"name": "pear-pear.php.net/Net_SMTP",
"version": "1.6.2",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/Net_SMTP-1.6.2.tgz",
"reference": null,
"shasum": null
},
"require": {
"pear-pear.php.net/net_socket": ">=1.0.7.0",
"php": ">=4.0.5.0"
},
"replace": {
"pear-pear/net_smtp": "== 1.6.2.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "Provides an implementation of the SMTP protocol using PEAR's Net_Socket class."
},
{
"name": "pear-pear.php.net/Net_Socket",
"version": "1.0.14",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/Net_Socket-1.0.14.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=4.3.0.0"
},
"replace": {
"pear-pear/net_socket": "== 1.0.14.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "Net_Socket is a class interface to TCP sockets. It provides blocking\n and non-blocking operation, with different reading and writing modes\n (byte-wise, block-wise, line-wise and special formats like network\n byte-order ip addresses)."
},
{
"name": "pear-pear.php.net/Net_URL",
"version": "1.0.15",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/Net_URL-1.0.15.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=4.0.0.0"
},
"replace": {
"pear-pear/net_url": "== 1.0.15.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "Provides easy parsing of URLs and their constituent parts."
},
{
"name": "pear-pear.php.net/Net_UserAgent_Mobile",
"version": "1.0.0",
"dist": {
"type": "file",
"url": "http://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": [
"/"
],
"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/PEAR",
"version": "1.9.5",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/PEAR-1.9.5.tgz",
"reference": null,
"shasum": null
},
"require": {
"ext-pcre": "*",
"ext-xml": "*",
"pear-pear.php.net/archive_tar": ">=1.3.11.0",
"pear-pear.php.net/console_getopt": ">=1.2.0.0",
"pear-pear.php.net/structures_graph": ">=1.0.2.0",
"pear-pear.php.net/xml_util": ">=1.2.0.0",
"php": ">=4.4.0.0,!=5.0.0.0,!=5.1.0.0,!=5.1.1.0,!=5.1.2.0,!=5.1.3.0,!=5.1.4.0,!=5.1.5.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.9.5.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"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/SOAP",
"version": "0.13.0",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/SOAP-0.13.0.tgz",
"reference": null,
"shasum": null
},
"require": {
"pear-pear.php.net/http_request": "*",
"pear-pear.php.net/pear": "*",
"php": ">=5.0.0.0"
},
"replace": {
"pear-pear/soap": "== 0.13.0.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "Implementation of SOAP protocol and services"
},
{
"name": "pear-pear.php.net/Services_JSON",
"version": "1.0.3",
"dist": {
"type": "file",
"url": "http://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": [
"/"
],
"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/Structures_Graph",
"version": "1.0.4",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/Structures_Graph-1.0.4.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=4.2.0.0"
},
"replace": {
"pear-pear/structures_graph": "== 1.0.4.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "Structures_Graph is a package for creating and manipulating graph datastructures. It allows building of directed\nand undirected graphs, with data and metadata stored in nodes. The library provides functions for graph traversing\nas well as for characteristic extraction from the graph topology."
},
{
"name": "pear-pear.php.net/Text_Password",
"version": "1.1.1",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/Text_Password-1.1.1.tgz",
"reference": null,
"shasum": null
},
"require": {
"php": ">=4.2.0.0"
},
"replace": {
"pear-pear/text_password": "== 1.1.1.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "Text_Password allows one to create pronounceable and unpronounceable\npasswords. The full functional range is explained in the manual at\nhttp://pear.php.net/manual/."
},
{
"name": "pear-pear.php.net/XML_Parser",
"version": "1.3.4",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/XML_Parser-1.3.4.tgz",
"reference": null,
"shasum": null
},
"require": {
"pear-pear.php.net/pear": "*",
"php": ">=4.2.0.0"
},
"replace": {
"pear-pear/xml_parser": "== 1.3.4.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "This is an XML parser based on PHPs built-in xml extension.\nIt supports two basic modes of operation: &quot;func&quot; and &quot;event&quot;. In &quot;func&quot; mode, it will look for a function named after each element (xmltag_ELEMENT for start tags and xmltag_ELEMENT_ for end tags), and in &quot;event&quot; mode it uses a set of generic callbacks.\n\nSince version 1.2.0 there's a new XML_Parser_Simple class that makes parsing of most XML documents easier, by automatically providing a stack for the elements.\nFurthermore its now possible to split the parser from the handler object, so you do not have to extend XML_Parser anymore in order to parse a document with it."
},
{
"name": "pear-pear.php.net/XML_Serializer",
"version": "0.20.2",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/XML_Serializer-0.20.2.tgz",
"reference": null,
"shasum": null
},
"require": {
"ext-xml": "*",
"pear-pear.php.net/pear": "*",
"pear-pear.php.net/xml_parser": ">=1.2.6.0",
"pear-pear.php.net/xml_util": ">=1.1.1.0",
"php": ">=4.2.0.0"
},
"replace": {
"pear-pear/xml_serializer": "== 0.20.2.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "XML_Serializer serializes complex data structures like arrays or object as XML documents.\nThis class helps you generating any XML document you require without the need for DOM.\nFurthermore this package can be used as a replacement to serialize() and unserialize() as it comes with a matching XML_Unserializer that is able to create PHP data structures (like arrays and objects) from XML documents, if type hints are available.\nIf you use the XML_Unserializer on standard XML files, it will try to guess how it has to be unserialized. In most cases it does exactly what you expect it to do.\nTry reading a RSS file with XML_Unserializer and you have the whole RSS file in a structured array or even a collection of objects, similar to XML_RSS.\n\nSince version 0.8.0 the package is able to treat XML documents similar to the simplexml extension of PHP 5."
},
{
"name": "pear-pear.php.net/XML_Util",
"version": "1.2.3",
"dist": {
"type": "file",
"url": "http://pear.php.net/get/XML_Util-1.2.3.tgz",
"reference": null,
"shasum": null
},
"require": {
"ext-pcre": "*",
"php": ">=4.3.0.0"
},
"replace": {
"pear-pear/xml_util": "== 1.2.3.0"
},
"type": "pear-library",
"autoload": {
"classmap": [
""
]
},
"include-path": [
"/"
],
"description": "Selection of methods that are often needed when working with XML documents. Functionality includes creating of attribute lists from arrays, creation of tags, validation of XML names and more."
},
{
"name": "pimple/pimple",
"version": "v1.1.1",
"source": {
"type": "git",
"url": "https://github.com/silexphp/Pimple.git",
"reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/silexphp/Pimple/zipball/2019c145fe393923f3441b23f29bbdfaa5c58c4d",
"reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
},
"autoload": {
"psr-0": {
"Pimple": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
}
],
"description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
"homepage": "http://pimple.sensiolabs.org",
"keywords": [
"container",
"dependency injection"
],
"time": "2013-11-22 08:30:29"
},
{
"name": "psr/log",
"version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/log.git",
"reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
"reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
"shasum": ""
},
"type": "library",
"autoload": {
"psr-0": {
"Psr\\Log\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "http://www.php-fig.org/"
}
],
"description": "Common interface for logging libraries",
"keywords": [
"log",
"psr",
"psr-3"
],
"time": "2012-12-21 11:40:51"
},
{
"name": "silex/silex",
"version": "v1.2.2",
"source": {
"type": "git",
"url": "https://github.com/silexphp/Silex.git",
"reference": "8c5e86eb97f3eee633729b22e950082fb5591328"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/silexphp/Silex/zipball/8c5e86eb97f3eee633729b22e950082fb5591328",
"reference": "8c5e86eb97f3eee633729b22e950082fb5591328",
"shasum": ""
},
"require": {
"php": ">=5.3.3",
"pimple/pimple": "~1.0",
"symfony/event-dispatcher": ">=2.3,<2.6-dev",
"symfony/http-foundation": ">=2.3,<2.6-dev",
"symfony/http-kernel": ">=2.3,<2.6-dev",
"symfony/routing": ">=2.3,<2.6-dev"
},
"require-dev": {
"doctrine/dbal": "~2.2",
"monolog/monolog": "~1.4,>=1.4.1",
"phpunit/phpunit": "~3.7",
"swiftmailer/swiftmailer": "5.*",
"symfony/browser-kit": ">=2.3,<2.6-dev",
"symfony/config": ">=2.3,<2.6-dev",
"symfony/css-selector": ">=2.3,<2.6-dev",
"symfony/debug": ">=2.3,<2.6-dev",
"symfony/dom-crawler": ">=2.3,<2.6-dev",
"symfony/finder": ">=2.3,<2.6-dev",
"symfony/form": ">=2.3,<2.6-dev",
"symfony/locale": ">=2.3,<2.6-dev",
"symfony/monolog-bridge": ">=2.3,<2.6-dev",
"symfony/options-resolver": ">=2.3,<2.6-dev",
"symfony/process": ">=2.3,<2.6-dev",
"symfony/security": ">=2.3,<2.6-dev",
"symfony/serializer": ">=2.3,<2.6-dev",
"symfony/translation": ">=2.3,<2.6-dev",
"symfony/twig-bridge": ">=2.3,<2.6-dev",
"symfony/validator": ">=2.3,<2.6-dev",
"twig/twig": ">=1.8.0,<2.0-dev"
},
"suggest": {
"symfony/browser-kit": ">=2.3,<2.6-dev",
"symfony/css-selector": ">=2.3,<2.6-dev",
"symfony/dom-crawler": ">=2.3,<2.6-dev",
"symfony/form": ">=2.3,<2.6-dev"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
},
"autoload": {
"psr-0": {
"Silex": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
},
{
"name": "Igor Wiedler",
"email": "[email protected]"
}
],
"description": "The PHP micro-framework based on the Symfony2 Components",
"homepage": "http://silex.sensiolabs.org",
"keywords": [
"microframework"
],
"time": "2014-09-26 09:32:30"
},
{
"name": "silex/web-profiler",
"version": "v1.0.4",
"target-dir": "Silex/Provider",
"source": {
"type": "git",
"url": "https://github.com/silexphp/Silex-WebProfiler.git",
"reference": "dc371e211d1f3ee62cb822518f4f97b44d1c250a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/silexphp/Silex-WebProfiler/zipball/dc371e211d1f3ee62cb822518f4f97b44d1c250a",
"reference": "dc371e211d1f3ee62cb822518f4f97b44d1c250a",
"shasum": ""
},
"require": {
"silex/silex": "~1.0",
"symfony/stopwatch": "~2.2",
"symfony/web-profiler-bundle": "~2.4"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-0": {
"Silex\\Provider\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
}
],
"description": "A WebProfiler for Silex",
"homepage": "http://silex.sensiolabs.org/",
"time": "2014-11-24 08:26:12"
},
{
"name": "smarty/smarty",
"version": "v2.6.28",
"source": {
"type": "git",
"url": "https://github.com/smarty-php/smarty.git",
"reference": "0ecdd6c41d0de08cba846087abd02a9adb5218e5"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/smarty-php/smarty/zipball/0ecdd6c41d0de08cba846087abd02a9adb5218e5",
"reference": "0ecdd6c41d0de08cba846087abd02a9adb5218e5",
"shasum": ""
},
"require": {
"php": ">=5.2"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.6.x-dev"
}
},
"autoload": {
"classmap": [
"libs/Smarty.class.php",
"libs/Smarty_Compiler.class.php",
"libs/Config_File.class.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"LGPL-3.0"
],
"authors": [
{
"name": "Monte Ohrt",
"email": "[email protected]"
},
{
"name": "Uwe Tews",
"email": "[email protected]"
}
],
"description": "Smarty - the compiling PHP template engine",
"homepage": "http://www.smarty.net",
"keywords": [
"templating"
],
"time": "2014-10-31 00:07:20"
},
{
"name": "symfony/debug",
"version": "v2.6.3",
"target-dir": "Symfony/Component/Debug",
"source": {
"type": "git",
"url": "https://github.com/symfony/Debug.git",
"reference": "7213c8200d60728c9d4c56d5830aa2d80ae3d25d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/Debug/zipball/7213c8200d60728c9d4c56d5830aa2d80ae3d25d",
"reference": "7213c8200d60728c9d4c56d5830aa2d80ae3d25d",
"shasum": ""
},
"require": {
"php": ">=5.3.3",
"psr/log": "~1.0"
},
"require-dev": {
"symfony/class-loader": "~2.2",
"symfony/http-foundation": "~2.1",
"symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2"
},
"suggest": {
"symfony/http-foundation": "",
"symfony/http-kernel": ""
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.6-dev"
}
},
"autoload": {
"psr-0": {
"Symfony\\Component\\Debug\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Symfony Community",
"homepage": "http://symfony.com/contributors"
},
{
"name": "Fabien Potencier",
"email": "[email protected]"
}
],
"description": "Symfony Debug Component",
"homepage": "http://symfony.com",
"time": "2015-01-05 17:41:06"
},
{
"name": "symfony/event-dispatcher",
"version": "v2.5.9",
"target-dir": "Symfony/Component/EventDispatcher",
"source": {