Security update to Drupal 8.4.6
[yaffs-website] / vendor / guzzlehttp / promises / composer.json
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 }