PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Web Services » Services_Amazon_SQS

PHP API and tools for Amazon SQS (Simple Queue Service)

This package is unmaintained.

Download latest release 0.3.0 (archived versions might be outdated)

License: Apache License 2.0

Description

This package provides an object-oriented interface to the Amazon Simple Queue Service (SQS). Included are client libraries and a command-line script for managing queues. You will need a set of web-service keys from Amazon Web Services that have SQS enabled. You can sign up for an account at: https://aws-portal.amazon.com/gp/aws/developer/registration/index.html.

Note: Although this package has no cost, Amazon's Web services are not free to use. You will be billed by Amazon for your use of SQS.

This package is derived with permission from the simple-aws package available at http://code.google.com/p/simple-aws/ and written by Mike Brittain.

This package requires PHP 5.2.1. On Red Hat flavored distributions, the "php-xml" package must also be installed.

There are two main ways to use this package. Firstly, it provides an API that may be used to manage queues, and to add and remove messages from queues in PHP scripts. The Services_Amazon_SQS_QueueManager and Services_Amazon_SQS_Queue classes provide these methods.

Secondly, a command-line application for managing SQS queues is provided. This is installed by PEAR as "sqs". Running this command produces the following output:

A command-line interface to Amazon's Simple Queue Service (SQS).

Usage:
/usr/bin/sqs [options]
/usr/bin/sqs [options] <command> [options] [args]

Options:
-c config, --config=config Find configuration in "config".

Commands:
create Creates a new queue with the specified name. The queue may
take up to 60 seconds to become available.
delete Deletes an existing queue by the specified URI. The queue
may take up to 60 seconds to become unavailable.
help Displays an overview of available options and commands, or
detailed help for a specific command.
list Lists available queues. If a prefix is specified, only
queues beginning with the specified prefix are listed.
send Sends input from STDIN to the specified queue. The
resulting message identifier is displayed on STDOUT.
receive Receives a message from the specified queue. The message
body is displayed on STDOUT. If no message is received,
nothing is displayed on STDOUT.
version Displays version information and exits.

Maintainers

Dependencies

Required

Releases

Bugs

IDStatusTypeVersionDateSummary
#15430ClosedReqCVS2008-12-28Use Console_CommandLine
#15431ClosedReqCVS2008-12-28Add ability to send and receive messages on the command line
#15432ClosedReq0.1.02008-12-28Use Signature Version 2 for verifying requests
#15451ClosedReqCVS2008-12-30Improve units tests, use mock HTTP objects
#16041ClosedBugCVS2009-03-17Stop abusing backtick as a quotation mark.
#16085ClosedReqCVS2009-04-09Support new SQS commands
#16824ClosedReqCVS2009-11-23Handle Amazon InternalError errors automagically
#16832OpenReqCVS2009-11-24Implement the policy language for queues
#16975OpenBug0.3.02010-01-06Slow memory leak
#17752ClosedDocSVN2010-08-19Broken link in testing doc comment
#19020ClosedBugSVN2011-11-14remove error_reporting (for PEAR QA team)
#19166ClosedBugSVN2011-12-29upgrade PHPUnit require statements & other fixes (for PEAR QA Team)
#19167ClosedBugSVN2011-12-29"Array to string conversion" in Queue.php line 513