-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 936 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 936 Bytes
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
{
"name": "hi/library",
"description": "Hi 框架类库组件",
"type": "library",
"autoload": {
"psr-4": {
"Library\\": "src/",
"Aura\\SqlQuery\\": "SqlQuery/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Anoxia",
"email": "anoxia@engineer.com"
}
],
"require": {
"monolog/monolog": "^3.2",
"nette/robot-loader": "^3.4"
},
"require-dev": {
"hi/http": "^0.0",
"hi/kernel": "^0.0",
"elasticsearch/elasticsearch": "7.17",
"jetbrains/phpstorm-stubs": "^2022.3",
"monolog/monolog": "^3.3",
"vimeo/psalm": "^5.8",
"friendsofphp/php-cs-fixer": "^3.15",
"phpunit/phpunit": "^9.6",
"sempro/phpunit-pretty-print": "^1.2",
"mockery/mockery": "^1.5"
}
}