-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
52 lines (52 loc) · 1.1 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
{
"name": "chance-fyi/operation-log",
"description": "Elegant logging of operations",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Chance\\Log\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Chance\\Log\\Test\\": "tests/"
}
},
"authors": [
{
"name": "chance",
"email": "ctx_ya@qq.com"
}
],
"minimum-stability": "dev",
"require": {
"php": "^8.0",
"ext-json": "*"
},
"require-dev": {
"illuminate/database": "^8.0",
"topthink/think-orm": "2.0.x-dev",
"fakerphp/faker": "^1.21@dev",
"friendsofphp/php-cs-fixer": "dev-master",
"phpunit/phpunit": "9.6.x-dev",
"phpstan/phpstan": "1.11.x-dev",
"hyperf/database": "^3.0@dev",
"hyperf/di": "^3.0@dev",
"hyperf/pimple": "^2.1",
"hyperf/config": "^3.0@dev"
},
"scripts": {
"test": "phpunit",
"cs-fix": "php-cs-fixer fix $1",
"analyse": "phpstan analyse --memory-limit=-1"
},
"bin": [
"bin/chance-fyi-operation-log"
],
"extra": {
"hyperf": {
"config": "Chance\\Log\\orm\\hyperf\\ConfigProvider"
}
}
}