You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 535B

1234567891011121314151617181920212223
  1. {
  2. "name": "stechstudio/backoff",
  3. "description": "PHP library providing retry functionality with multiple backoff strategies and jitter support",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Joseph Szobody",
  8. "email": "joseph@stechstudio.com"
  9. }
  10. ],
  11. "require": {},
  12. "require-dev": {
  13. "phpunit/phpunit": "5.5.*"
  14. },
  15. "autoload": {
  16. "psr-4":{
  17. "STS\\Backoff\\": "src"
  18. },
  19. "files": [
  20. "src/helpers.php"
  21. ]
  22. }
  23. }