-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 935 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 935 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
40
41
{
"name": "programic/php-linting-rules",
"description": "Shared linting rules for PHP projects",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mike Meijer",
"email": "m.meijer@programic.com"
},
{
"name": "Thimon Wentink",
"email": "t.wentink@programic.com"
}
],
"require": {
"php": "^8.2",
"larastan/larastan": "^3.0",
"tightenco/tlint": "^9.5",
"phpmd/phpmd": "^3.x-dev",
"symplify/easy-coding-standard": "^12.5",
"slevomat/coding-standard": "^8.0",
"phpstan/phpstan-mockery": "^2.0",
"mockery/mockery": "^1.6",
"squizlabs/php_codesniffer": "3.13.2"
},
"autoload": {
"psr-4": {
"ProgramicLint\\Configs\\": "configs/"
}
},
"bin": [
"bin/programic-lint-setup"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev"
}