-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 996 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 996 Bytes
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
{
"name": "vdhicts/replacer",
"description": "Package to easily replace values in text for templating purposes.",
"license": "MIT",
"authors": [
{
"name": "D. van der Heiden",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Vdhicts\\Replacer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vdhicts\\Replacer\\Test\\": "tests/"
}
},
"require": {
"php" : "^8.2"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.0|^11.0|^12.0",
"symplify/easy-coding-standard": "^12.5"
},
"scripts": {
"code-style:check": "vendor/bin/ecs",
"code-style:fix": "vendor/bin/ecs --fix",
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit",
"test:no-coverage": "vendor/bin/phpunit --no-coverage"
},
"config": {
"sort-packages": true
}
}