-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extend processing time for messages (#48)
* extend processing time for messages * remove prefer stable from prefer lowest * try different hamcrest version for travis composer
- Loading branch information
Harry Bragg
authored
May 25, 2018
1 parent
2c948a8
commit c3a6f7f
Showing
37 changed files
with
2,849 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
vendor/ | ||
composer.lock | ||
|
||
.idea | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,45 @@ | ||
{ | ||
"name": "graze/queue", | ||
"description": ":postbox: Flexible abstraction for working with queues in PHP.", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Graze Developers", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/graze/queue/graphs/contributors" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Graze\\Queue\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"classmap": [ | ||
"tests/unit/", | ||
"tests/integration" | ||
] | ||
}, | ||
"require": { | ||
"php": ">=5.5", | ||
"graze/data-structure": "^2.0" | ||
}, | ||
"require-dev": { | ||
"aws/aws-sdk-php": "^3.0", | ||
"hamcrest/hamcrest-php": "^1.2", | ||
"mockery/mockery": "^0.9", | ||
"phpunit/phpunit": "^4.8", | ||
"squizlabs/php_codesniffer": "^2.7,<2.8.1", | ||
"graze/hamcrest-test-listener": "^1.0", | ||
"graze/standards": "^1.0" | ||
}, | ||
"suggest": { | ||
"aws/aws-sdk-php": "Required when using the SQS Adapter" | ||
"name": "graze/queue", | ||
"description": ":postbox: Flexible abstraction for working with queues in PHP.", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Graze Developers", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/graze/queue/graphs/contributors" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Graze\\Queue\\": "src/", | ||
"Graze\\Queue\\Test\\": "tests/src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"classmap": [ | ||
"tests/unit/", | ||
"tests/integration" | ||
] | ||
}, | ||
"require": { | ||
"php": "^5.5|^7", | ||
"graze/data-structure": "^2" | ||
}, | ||
"require-dev": { | ||
"aws/aws-sdk-php": "^3", | ||
"hamcrest/hamcrest-php": "^2", | ||
"mockery/mockery": "^1", | ||
"phpunit/phpunit": "^5.7.21|^6|^7", | ||
"squizlabs/php_codesniffer": "^3", | ||
"graze/standards": "^2", | ||
"graze/hamcrest-test-listener": "^2|^3" | ||
}, | ||
"suggest": { | ||
"aws/aws-sdk-php": "Required when using the SQS Adapter" | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "7.2" | ||
} | ||
} | ||
} |
Oops, something went wrong.