0c7dab4a0c23668ba123fdc93a1204027004aec0
[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.2",
28 "ext-http": ">=3.2",
29 "ext-json": "*",
30 "psr/log": "^1.0",
31 "psr/cache": "^1.0",
32 "psr/simple-cache": "^1.0",
33 "rize/uri-template": "^0.3.3"
34 },
35 "require-dev": {
36 "php": "^8",
37 "amphp/amp": "^2",
38 "react/promise": "^2",
39 "monolog/monolog": "*",
40 "phpunit/phpunit": "*",
41 "squizlabs/php_codesniffer": "*",
42 "phpcompatibility/php-compatibility": "*"
43 }
44 }