-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.93 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.93 KB
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
{
"name": "james.xue/code-explain",
"description": "What does it mean to explain the code(解释代码是什么意思)",
"license": "MIT",
"type": "project",
"keywords": [
"code",
"analyze",
"explain",
"code-analyze",
"code-explain"
],
"authors": [
{
"name": "xiaoxuan6",
"email": "1527736751@qq.com"
}
],
"support": {
"issues": "https://github.com/xiaoxuan6/code-explain/issues",
"source": "https://github.com/xiaoxuan6/code-explain"
},
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-sodium": "*",
"guzzlehttp/guzzle": "^7.5",
"illuminate/http": "^10.48",
"laminas/laminas-text": "^2.0",
"laravel-zero/framework": "^10.2",
"laravel-zero/phar-updater": "^1.3",
"laravel/prompts": "^0.1.17",
"titasgailius/terminal": "^1.2"
},
"require-dev": {
"james.xue/packet": "^0.0.5"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/xiaoxuan6/packet"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"bin": [
"builds/code-explain"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.1"
},
"sort-packages": true
},
"scripts": {
"fix": [
"@rector",
"@pint"
],
"pint": "vendor/bin/php-cs-fixer fix --config=vendor/james.xue/packet/.php-cs-fixer.php --using-cache=no --verbose --ansi",
"rector": "vendor/bin/rector process --config=vendor/james.xue/packet/rector.php --no-diffs --ansi",
"unused": "vendor/bin/composer-unused --ansi -v"
}
}