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

Changelog

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

  * Add myself to Uploaders

 -- James Valleroy <email address hidden>  Thu, 21 Dec 2023 22:28:34 -0500

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
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
php-datto-json-rpc-http_5.0.6-2.dsc 2.1 KiB 4c86f9fed0835fd2301289198061cdbf8faeb6610f619b4065c1fa300e420ca8
php-datto-json-rpc-http_5.0.6.orig.tar.xz 10.9 KiB 748115ea8a3ac573b03c422759bcb0098dd9acb905e7188892c14b52adc1cc49
php-datto-json-rpc-http_5.0.6-2.debian.tar.xz 2.6 KiB 8367461779c7a2af9b98f54a3f397a2e0860f5d229ae92279ea151a4b9838ae0

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