drop async-interop
[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/API/functions.php",
19 "lib/API/Future/functions.php",
20 "lib/API/Links/functions.php",
21 "lib/Exception/functions.php"
22 ]
23 },
24 "minimum-stability": "dev",
25 "prefer-stable": true,
26 "require": {
27 "php": "^7.0",
28 "ext-http": "^3.0",
29 "seebz/uri-template": "dev-master",
30 "psr/log": "^1.0",
31 "psr/cache": "^1.0",
32 "psr/simple-cache": "^1.0"
33 },
34 "require-dev": {
35 "amphp/amp": "^2",
36 "react/promise": "^2",
37 "monolog/monolog": "^1",
38 "phpunit/phpunit": "^5"
39 }
40 }