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.

39 lines
924 B

3 years ago
  1. {
  2. "name": "guzzlehttp/promises",
  3. "description": "Guzzle promises library",
  4. "keywords": ["promise"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Michael Dowling",
  9. "email": "mtdowling@gmail.com",
  10. "homepage": "https://github.com/mtdowling"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.5"
  15. },
  16. "require-dev": {
  17. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "GuzzleHttp\\Promise\\": "src/"
  22. },
  23. "files": ["src/functions_include.php"]
  24. },
  25. "autoload-dev": {
  26. "psr-4": {
  27. "GuzzleHttp\\Promise\\Tests\\": "tests/"
  28. }
  29. },
  30. "scripts": {
  31. "test": "vendor/bin/simple-phpunit",
  32. "test-ci": "vendor/bin/simple-phpunit --coverage-text"
  33. },
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "1.4-dev"
  37. }
  38. }
  39. }