php-datto-json-rpc-http 5.0.6-3 source package in Ubuntu

Changelog

php-datto-json-rpc-http (5.0.6-3) unstable; urgency=medium

  * Team upload
  * Force system dependencies loading

 -- David Prévot <email address hidden>  Thu, 07 Mar 2024 18:12:41 +0100

Upload details

Uploaded by:
Debian PHP PEAR Maintainers
Uploaded to:
Sid
Original maintainer:
Debian PHP PEAR Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
php-datto-json-rpc-http_5.0.6-3.dsc 1.8 KiB 8e39b1d7a2e18d6d9341a7eba9f17482edadff8743ed4171825357f6e79102ec
php-datto-json-rpc-http_5.0.6.orig.tar.xz 10.9 KiB 748115ea8a3ac573b03c422759bcb0098dd9acb905e7188892c14b52adc1cc49
php-datto-json-rpc-http_5.0.6-3.debian.tar.xz 2.6 KiB bfe1a196fd2c7e7b1ec4018cf483e829e08e2226a003481f2f5770ba16babc89

Available diffs

No changes file available.

Binary packages built by this source

php-datto-json-rpc-http: HTTP client and server for JSON-RPC 2.0

 This package allows you to set up a JSON-RPC client and/or server over
 HTTP(S), using your own PHP code to evaluate the requests.
 .
 This package abstracts away the details of the JSON-RPC messaging format and
 the HTTP(S) headers that are necessary for the client and server to
 communicate successfully.
 .
 You're free to use your own library to handle the requests. Likewise, you're
 free to route requests to your server endpoint through any system that you
 prefer! (See the "examples" folder for ready-to-use examples.)
 .
 This package allows you to communicate with a URL endpoint: If don't need to
 send or receive HTTP(S) headers, but just want to abstract away the internal
 JSON-RPC messaging format, then you should use the php-json-rpc package
 instead.
 .
 Features:
  - Correct: fully compliant with the JSON-RPC 2.0 specifications
  - Reliable: works in all environments (even when CURL is not installed)
  - Flexible: you can choose your own system for interpreting the JSON-RPC
    method strings
  - Minimalistic: just two tiny files
  - Ready to use, with working examples