-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.19 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"authors": [
{
"name": "Serge Yakovlev",
"email": "serge.yakovlev@gmail.com"
}
],
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"sort-packages": true
},
"description": "Test Task",
"license": "proprietary",
"require": {
"php": "^8.2"
},
"require-dev": {
"jetbrains/phpstorm-attributes": "*",
"phpstan/phpstan": "*",
"phpunit/phpunit": "*",
"psalm/attributes": "*",
"psalm/plugin-phpunit": "*",
"rector/rector": "*",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "*",
"symplify/easy-coding-standard": "*",
"vimeo/psalm": "*"
},
"scripts": {
"analyze-phpstan": "vendor/bin/phpstan",
"analyze-psalm": "vendor/bin/psalm",
"cs": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit"
},
"type": "project"
}