php-services-json 1.0.3-1 source package in Ubuntu

Changelog

php-services-json (1.0.3-1) unstable; urgency=low


  * New upstream release.
  * Switching to source format 3.0 (quilt).
  * Added a debian/gbp.conf.
  * Switching debian/copyright to machine-readable format 1.0, and relicensed
  the packaging as BSD (to match the upstream author license).
  * Switching to dh 8 sequencer and pkg-php-tools.
  * Now using PKG-PHP-PEAR team as maintainer.
  * Fixed Vcs fields (Closes: #638527).
  * Standard-Versions: 3.9.3 (no change but the above).

 -- Thomas Goirand <email address hidden>  Fri, 24 Feb 2012 16:45:27 +0800

Upload details

Uploaded by:
Debian PHP PEAR Maintainers
Uploaded to:
Sid
Original maintainer:
Debian PHP PEAR Maintainers
Architectures:
all
Section:
web
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe web

Builds

Quantal: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
php-services-json_1.0.3-1.dsc 1.4 KiB d7305d470132fd9ecba962c60d86f502023bd3d15971c8be792be52a2adccca3
php-services-json_1.0.3.orig.tar.gz 9.3 KiB 007bfa934b9dc866f2b558355097372e1542bdfd5a7e3f39e3d7b94cc6cae1c3
php-services-json_1.0.3-1.debian.tar.gz 2.5 KiB 2eb319436e3773703c6f3a3202c052f9786c7ce29edb7a346aaf5959c1dae999

Available diffs

No changes file available.

Binary packages built by this source

php-services-json: PHP implementaion of json_encode/decode

 JSON (JavaScript Object Notation, http://json.org) is a lightweight
 data-interchange format. It is easy for humans to read and write. It is easy
 for machines to parse and generate. It is based on a subset of the JavaScript
 Programming Language, Standard ECMA-262 3rd Edition - December 1999. This
 feature can also be found in Python. JSON is a text format that is completely
 language independent but uses conventions that are familiar to programmers of
 the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Tcl,
 and many others. These properties make JSON an ideal data-interchange
 language.
 .
 This package provides a simple encoder and decoder for JSON notation. It is
 intended for use with client-side Javascript applications that make use of
 HTTPRequest to perform server communication functions - data can be encoded
 into JSON notation for use in a client-side javascript, or decoded from
 incoming Javascript requests. JSON format is native to Javascript, and can be
 directly eval()'ed with no further parsing overhead.