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
|
Source: libjson-maybexs-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Florian Schlichting <fsfs@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libcpanel-json-xs-perl <!nocheck>,
libjson-pp-perl <!nocheck>,
libjson-xs-perl (>= 3) <!nocheck>,
libtest-needs-perl (>= 0.002006) <!nocheck>,
perl
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libjson-maybexs-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libjson-maybexs-perl.git
Homepage: https://metacpan.org/release/JSON-MaybeXS
Rules-Requires-Root: no
Package: libjson-maybexs-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libcpanel-json-xs-perl | libjson-xs-perl (>= 3),
libjson-pp-perl
Description: interface to the best available JSON module
JSON::MaybeXS first checks to see if either Cpanel::JSON::XS or JSON::XS is
already loaded, in which case it uses that module. Otherwise it tries to load
Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and either uses the
first module it finds or throws an error.
.
It then exports the encode_json and decode_json functions from the loaded
module, along with a JSON constant that returns the class name for calling
new on.
|