composer.json 786 B

12345678910111213141516171819202122232425262728293031323334
  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.0"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "^4.0"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "GuzzleHttp\\Promise\\": "src/"
  22. },
  23. "files": ["src/functions_include.php"]
  24. },
  25. "scripts": {
  26. "test": "vendor/bin/phpunit",
  27. "test-ci": "vendor/bin/phpunit --coverage-text"
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "1.4-dev"
  32. }
  33. }
  34. }