Skip to content

Commit aecc570

Browse files
committed
Added support for AWS PHP SDK version 2
1 parent a6473a7 commit aecc570

File tree

7 files changed

+765
-7
lines changed

7 files changed

+765
-7
lines changed

Diff for: composer.json

+11-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,20 @@
1111
"email": "mcheng.work@gmail.com"
1212
}
1313
],
14+
"repositories": [
15+
{
16+
"type": "pear",
17+
"url": "http://pear.php.net"
18+
}
19+
],
1420
"require": {
1521
"php": ">=5.3.0",
1622
"monolog/monolog": "~1.3"
1723
},
1824
"require-dev": {
1925
"clio/clio": "@stable",
2026
"mrpoundsign/pheanstalk-5.3": "dev-master",
27+
"aws/aws-sdk-php": "dev-master",
2128
"amazonwebservices/aws-sdk-for-php": "dev-master",
2229
"predis/predis": "v0.8.0",
2330
"iron-io/iron_mq": "dev-master",
@@ -27,11 +34,13 @@
2734
"suggest": {
2835
"predis/predis": "For Redis backend support",
2936
"mrpoundsign/pheanstalk-5.3": "For Beanstalkd backend support",
30-
"amazonwebservices/aws-sdk-for-php": "For AWS SQS backend support",
37+
"aws/aws-sdk-php": "For AWS SQS backend support",
38+
"amazonwebservices/aws-sdk-for-php": "For AWS SQS backend support (legacy version)",
3139
"pecl-mongodb": "For MongoDB backend support",
3240
"clio/clio": "Support for daemonizing PHP CLI runner",
3341
"iron-io/iron_mq": "For IronMQ backend support",
34-
"microsoft/windowsazure": "For Windows Azure Service Bus backend support"
42+
"microsoft/windowsazure": "For Windows Azure Service Bus backend support",
43+
"Respect/Rest": "For a REST server to post job data"
3544
},
3645
"autoload": {
3746
"psr-0": {"PHPQueue": "src/"}

Diff for: phpunit.xml.dist

+16-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit
3-
colors="true"
2+
<phpunit
3+
colors="true"
4+
backupGlobals="false"
5+
backupStaticAttributes="false"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnError="false"
411
stopOnFailure="false"
5-
bootstrap="test/bootstrap.php"
6-
>
12+
stopOnIncomplete="false"
13+
stopOnSkipped="false"
14+
syntaxCheck="false"
15+
strict="true"
16+
bootstrap="test/bootstrap.php"
17+
>
718
<filter>
819
<whitelist>
920
<directory suffix=".php">src</directory>
@@ -14,4 +25,4 @@
1425
<directory suffix="Test.php">test</directory>
1526
</testsuite>
1627
</testsuites>
17-
</phpunit>
28+
</phpunit>

0 commit comments

Comments
 (0)