-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 1.85 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "inhere/kite",
"description": "person tool by php",
"type": "project",
"license": "MIT",
"homepage": "https://github/inhere/kite.git",
"authors": [
{
"name": "inhere",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1.0",
"ext-json": "*",
"ext-mbstring": "*",
"inhere/console": "dev-master",
"inhere/sroute": "dev-master",
"inhere/php-validate": "dev-master",
"cebe/markdown": "^1.2",
"colinodell/json5": "^2.2",
"gitonomy/gitlib": "^1.3",
"psr/log": "^3.0",
"psr/container": "^2.0",
"phppkg/jenkins-client": "dev-main",
"phppkg/http-client": "^3.0",
"phppkg/http-message": "^2.0",
"phppkg/easytpl": "dev-main",
"phppkg/config": "dev-master",
"phppkg/ini": "~0.1",
"phppkg/hucron": "dev-master",
"phppkg/phpgit": "dev-master",
"phppkg/cli-markdown": "^2.0",
"toolkit/extlib": "dev-main",
"toolkit/fsutil": "^2.0",
"laktak/hjson": "^2.2",
"knplabs/github-api": "^3.5",
"guzzlehttp/guzzle": "^7.4",
"guzzlehttp/psr7": "^2.1",
"http-interop/http-factory-guzzle": "^1.0",
"dragonmantank/cron-expression": "^3.1",
"nette/neon": "^3.3",
"symfony/expression-language": "^7.0",
"symfony/yaml": "^6.0",
"monolog/monolog": "^3.0"
},
"require-dev": {
"ext-posix": "*",
"ext-readline": "*"
},
"autoload": {
"psr-4": {
"Inhere\\Kite\\": "app/"
},
"files": [
"app/func.php"
]
},
"autoload-dev": {
"psr-4": {
"Inhere\\KiteTest\\": "test/unittest"
}
},
"bin": [
"bin/kite",
"bin/htu"
],
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
},
"scripts": {
"test": "php vender/bin/phpunit"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}