-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
55 lines (55 loc) · 1.32 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
{
"name": "webimpress/safe-writer",
"description": "Tool to write files safely, to avoid race conditions",
"license": "BSD-2-Clause",
"keywords": [
"webimpress",
"safe writer",
"file writer",
"concurrent write",
"race condition"
],
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.7",
"vimeo/psalm": "^5.9",
"webimpress/coding-standard": "^1.3.1"
},
"autoload": {
"psr-4": {
"Webimpress\\SafeWriter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WebimpressTest\\SafeWriter\\": "test/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.99"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev",
"dev-develop": "2.3.x-dev",
"dev-release-1.0": "1.0.x-dev"
}
},
"scripts": {
"check": [
"@cs-check",
"@test",
"@static-analysis"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --shepherd --stats",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}