-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.43 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "softwax/utils",
"description": "Utils and helpers used in SoftWax projects",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "SoftWax",
"homepage": "https://github.com/orgs/SoftWax/people"
}
],
"require": {
"php": "^8.4",
"ext-mbstring": "*",
"symfony/string": "^7.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^11.5",
"softwax/coding-standard": "^1.2"
},
"autoload": {
"psr-4": {
"SoftWax\\Utils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SoftWaxTests\\Utils\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@check:composer",
"@check:cs",
"@check:stan",
"@check:phpunit"
],
"check:composer": "composer validate --no-check-all --strict --no-interaction",
"check:cs": "vendor/bin/phpcs",
"check:phpunit": "vendor/bin/phpunit",
"check:stan": "vendor/bin/phpstan analyze"
}
}