basic async-interop support; generator consumer missing
[m6w6/seekat] / composer.json
1 {
2 "name": "m6w6/seekat",
3 "description": "seekat wraps github api in php",
4 "keywords": ["seekat", "github api", "api", "php"],
5 "license": "BSD-2-Clause",
6 "authors": [
7 {
8 "name": "Michael Wallner",
9 "email": "mike@php.net"
10 }
11 ],
12 "autoload": {
13 "psr-4": {
14 "seekat\\": "lib/"
15 },
16 "files": [
17 "lib/functions.php",
18 "lib/Exception/functions.php",
19 "lib/API/Future/functions.php",
20 "lib/API/Links/functions.php"
21 ]
22 },
23 "minimum-stability": "beta",
24 "prefer-stable": true,
25 "require": {
26 "php": "^7.0",
27 "ext-http": "^3.0",
28 "seebz/uri-template": "dev-master",
29 "psr/log": "^1.0",
30 "psr/cache": "^1.0",
31 "psr/simple-cache": "^1.0",
32 "async-interop/promise": "^0.4.0"
33 },
34 "require-dev": {
35 "react/promise": "dev-async-interop",
36 "amphp/amp": "dev-master",
37 "amphp/loop": "dev-master",
38 "peridot-php/peridot": "^1.15",
39 "monolog/monolog": "^1.19",
40 "peridot-php/leo": "^1.5",
41 "peridot-php/peridot-code-coverage-reporters": "^2.0"
42 }
43 }