-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.37 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
{
"name": "polynds/dev-helper",
"type": "library",
"description": "A PHP development assistant",
"keywords": [
"php"
],
"license": "Apache-2.0",
"authors": [
{
"name": "kuangjian",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"nikic/php-parser": "^4.1",
"symfony/console": "^5.4.3",
"symfony/finder": "^5.4.3",
"ext-json": "*",
"ext-pcntl": "*",
"kornrunner/keccak": "^1.1",
"devhelper-plugin/generate-diagram": "dev-main",
"devhelper-plugin/generate-dir-tree": "dev-main",
"devhelper-plugin/gen-doc": "dev-main",
"devhelper-plugin/keccak256": "dev-main",
"devhelper-plugin/data-visualizer": "dev-main",
"ext-gd": "*",
"devhelper-plugin/color-code": "dev-main"
},
"require-dev": {
"phpstan/phpstan": "1.8.2",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"psr-4": {
"DevHelper\\Lib\\": "src/Lib",
"DevHelper\\Utils\\": "src/Utils",
"Tests\\": "tests"
},
"files": [
"src/Utils/Functions.php"
]
},
"repositories": {
"devhelper-plugin": {
"type": "path",
"url": "./src/Plugin/*"
}
},
"scripts": {
"analyse": "phpstan analyse --memory-limit 1000M -c phpstan.neon",
"cs-fix": "php-cs-fixer fix $1",
"fake": "@php bin/fake"
},
"bin": [
"dh"
]
}