-
-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 968 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 968 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
{
"name": "thecodingmachine/safe-generator",
"description": "Generated the files for thecodingmachine/safe",
"version": "0.0.0",
"autoload": {
"psr-4": {
"Safe\\": "src/"
}
},
"require": {
"php": "^8.3",
"ext-simplexml": "*",
"ext-json": "*",
"phpstan/phpstan": "^2.1",
"symfony/console": "^7.2",
"symfony/process": "^7.2",
"symfony/finder": "^7.2",
"symfony/filesystem": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^12.5.14",
"squizlabs/php_codesniffer": "^3.2",
"php-parallel-lint/php-parallel-lint": "^1.4"
},
"scripts": {
"lint": "parallel-lint config/ src/ tests/",
"test": "XDEBUG_MODE=coverage phpunit",
"phpstan": "phpstan analyse",
"cs-fix": "phpcbf",
"cs-check": "phpcs"
},
"config": {
"platform": {
"php": "8.3"
}
}
}