-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
103 lines (103 loc) · 2.87 KB
/
composer.json
File metadata and controls
103 lines (103 loc) · 2.87 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "yousha/php-security-linter",
"description": "A PHP tool to lint PHP files for security issues based on CIS and OWASP best practices.",
"license": "GPL-3.0-only",
"type": "library",
"keywords": [
"php",
"security",
"linter",
"static-analysis",
"code-analysis",
"vulnerability-detection",
"security-linter",
"security-audit",
"secure-coding",
"owasp",
"cis",
"security-best-practices"
],
"authors": [
{
"name": "Yousha Aleayoub",
"email": "yousha.a@hotmail.com",
"homepage": "https://yousha.blog.ir/",
"role": "Maintainer, Developer"
}
],
"homepage": "https://github.com/yousha/php-security-linter",
"support": {
"email": "yousha.a@hotmail.com",
"issues": "https://github.com/yousha/php-security-linter/issues",
"source": "https://github.com/yousha/php-security-linter"
},
"require": {
"php": "8.*",
"ext-pcre": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "2.*",
"friendsofphp/php-cs-fixer": "3.*",
"icanhazstring/composer-unused": "0.*",
"overtrue/phplint": "9.*",
"phpunit/phpunit": "12.*",
"rector/rector": "2.*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Yousha\\PhpSecurityLinter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yousha\\PhpSecurityLinter\\Tests\\": "tests/"
}
},
"bin": [
"bin/php-sl"
],
"archive": {
"exclude": [
"*.log",
"*.cache",
"composer.lock"
]
},
"config": {
"allow-plugins": {
"composer-unused/composer-unused-plugin": true,
"ergebnis/composer-normalize": true
},
"archive-format": "zip",
"bin-compat": "full",
"optimize-autoloader": true,
"preferred-install": "dist",
"process-timeout": 300,
"sort-packages": false,
"vendor-dir": "vendor"
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
},
"scripts": {
"lint": "phplint",
"refactor": "rector process",
"refactor-check": "rector --dry-run",
"reformat": "php-cs-fixer fix",
"format-check": "php-cs-fixer check",
"test": "phpunit --configuration phpunit.xml"
},
"scripts-descriptions": {
"lint": "Check PHP files for syntax errors.",
"refactor": "Apply code refactoring.",
"refactor-check": "Check code refactoring rules.",
"reformat": "Fix coding style issues.",
"format-check": "Check coding style issues.",
"test": "Run all tests."
}
}