1{
2    "name": "guzzlehttp/promises",
3    "description": "Guzzle promises library",
4    "keywords": ["promise"],
5    "license": "MIT",
6    "authors": [
7        {
8            "name": "Graham Campbell",
9            "email": "hello@gjcampbell.co.uk",
10            "homepage": "https://github.com/GrahamCampbell"
11        },
12        {
13            "name": "Michael Dowling",
14            "email": "mtdowling@gmail.com",
15            "homepage": "https://github.com/mtdowling"
16        },
17        {
18            "name": "Tobias Nyholm",
19            "email": "tobias.nyholm@gmail.com",
20            "homepage": "https://github.com/Nyholm"
21        },
22        {
23            "name": "Tobias Schultze",
24            "email": "webmaster@tubo-world.de",
25            "homepage": "https://github.com/Tobion"
26        }
27    ],
28    "require": {
29        "php": ">=5.5"
30    },
31    "require-dev": {
32        "symfony/phpunit-bridge": "^4.4 || ^5.1"
33    },
34    "autoload": {
35        "psr-4": {
36            "GuzzleHttp\\Promise\\": "src/"
37        },
38        "files": ["src/functions_include.php"]
39    },
40    "autoload-dev": {
41        "psr-4": {
42            "GuzzleHttp\\Promise\\Tests\\": "tests/"
43        }
44    },
45    "scripts": {
46        "test": "vendor/bin/simple-phpunit",
47        "test-ci": "vendor/bin/simple-phpunit --coverage-text"
48    },
49    "extra": {
50        "branch-alias": {
51            "dev-master": "1.5-dev"
52        }
53    },
54    "config": {
55        "preferred-install": "dist",
56        "sort-packages": true
57    }
58}
59