-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.79 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.79 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
{
"name": "maduser/argon-workflows",
"description": "A PHP package for managing workflows",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Maduser\\Argon\\Workflows\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Maduser\\Argon\\Workflows\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2"
},
"require-dev": {
"vimeo/psalm": "^6.0",
"phpunit/phpunit": "^11.5",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"slevomat/coding-standard": "^8.16",
"squizlabs/php_codesniffer": "^3.8"
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/phpcs --standard=phpcs.xml",
"analyze": "vendor/bin/psalm --output-format=github",
"check:syntax": "find src tests -type f -name '*.php' -print0 | xargs -0 -r -n1 php -l",
"fix": [
"vendor/bin/phpcbf --standard=phpcs.xml"
],
"coverage": "vendor/bin/phpunit --coverage-html coverage-report && open coverage-report/index.html",
"check": [
"@check:syntax",
"@test",
"@analyze",
"@lint"
],
"ci": [
"@test",
"@analyze",
"@lint"
],
"watch": "find src/ | entr -r composer check",
"watch:test": "find src/ | entr -r composer test",
"watch:fix": "find src/ | entr -r composer fix"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.2.29"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}