-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.35 KB
/
Copy pathcomposer.json
File metadata and controls
77 lines (77 loc) · 2.35 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
74
75
76
77
{
"name": "php-forge/helper",
"type": "library",
"description": "Small, focused helpers for common PHP tasks.",
"keywords": [
"php",
"php-forge",
"helper",
"reflector",
"timezone",
"password",
"case-conversion"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Wilmer Arambula",
"email": "terabytesoftw@gmail.com",
"homepage": "https://github.com/terabytesoftw",
"role": "Developer"
}
],
"require": {
"php": "^8.3"
},
"require-dev": {
"infection/infection": "^0.33",
"maglnet/composer-require-checker": "^4.1",
"php-forge/baseline": "^0.1",
"php-forge/coding-standard": "^0.3",
"php-forge/support": "^0.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.5",
"xepozz/internal-mocker": "^1.4",
"yii2-extensions/scaffold": "^0.1"
},
"autoload": {
"psr-4": {
"PHPForge\\Helper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPForge\\Helper\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.3.x-dev"
},
"scaffold": {
"allowed-packages": [
"php-forge/baseline",
"php-forge/coding-standard"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"yii2-extensions/scaffold": true
}
},
"scripts": {
"check-dependencies": "./vendor/bin/composer-require-checker check",
"ecs": "./vendor/bin/ecs --fix",
"mutation": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100",
"mutation-static": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100 --static-analysis-tool=phpstan --static-analysis-tool-options='--memory-limit=-1'",
"rector": "./vendor/bin/rector process",
"static": "./vendor/bin/phpstan --memory-limit=-1",
"tests": "./vendor/bin/phpunit"
}
}