-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
87 lines (72 loc) · 2.41 KB
/
composer.json
File metadata and controls
87 lines (72 loc) · 2.41 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name" : "jbzoo/codestyle",
"type" : "library",
"license" : "MIT",
"description" : "Collection of QA tools and JBZoo code standards",
"keywords" : [
"codestyle",
"coding-standard",
"jbzoo",
"phan",
"php",
"php-cs-fixer",
"phpcompatibility",
"phpcs",
"phpmd",
"phpmetrics",
"phpstan",
"phpunit",
"psalm",
"qa",
"tests"
],
"authors" : [
{
"name" : "Denis Smetannikov",
"email" : "admin@jbzoo.com",
"role" : "lead"
}
],
"minimum-stability" : "dev",
"prefer-stable" : true,
"require" : {
"php" : "^8.2",
"vimeo/psalm" : ">=6.7.0",
"phpmd/phpmd" : ">=2.15.0",
"phan/phan" : ">=5.5.1",
"povils/phpmnd" : ">=3.6.0",
"phpstan/phpstan" : ">=2.1.29",
"phpstan/phpstan-strict-rules" : ">=2.0.7",
"squizlabs/php_codesniffer" : ">=4.0.0",
"phpmetrics/phpmetrics" : ">=2.9.1",
"pdepend/pdepend" : ">=2.16.2",
"symfony/yaml" : ">=7.3.3",
"symfony/console" : ">=7.3.4",
"symfony/finder" : ">=7.3.2",
"nikic/php-parser" : ">=5.6.1",
"friendsofphp/php-cs-fixer" : ">=3.88.2",
"kubawerlos/php-cs-fixer-custom-fixers" : ">=3.35.0",
"jbzoo/data" : "^7.1.1"
},
"require-dev" : {
"jbzoo/phpunit" : "^7.1",
"jbzoo/utils" : "^7.2.2",
"symfony/var-dumper" : ">=7.3.4"
},
"autoload" : {
"psr-4" : {"JBZoo\\Codestyle\\" : "src"},
"files" : ["src/compatibility.php"]
},
"autoload-dev" : {
"psr-4" : {"JBZoo\\PHPUnit\\" : "tests"}
},
"config" : {
"optimize-autoloader" : true,
"allow-plugins" : {"composer/package-versions-deprecated" : true}
},
"extra" : {
"branch-alias" : {
"dev-master" : "7.x-dev"
}
}
}