-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.2 KB
/
composer.json
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
{
"name": "tomasvotruba/phpstan-cakephp-2",
"description": "PHPStan extension for CakePHP 2",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.0",
"phpstan/phpstan": "^1.10"
},
"require-dev": {
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.5",
"phpstan/extension-installer": "^1.3",
"tracy/tracy": "^2.10",
"symplify/easy-coding-standard": "^12.1"
},
"autoload": {
"psr-4": {
"PHPStanCakePHP2\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPStanCakePHP2\\Tests\\": "tests"
},
"classmap": [
"stubs",
"tests/Source"
]
},
"extra": {
"phpstan": {
"includes": [
"config/extension.neon"
]
}
},
"scripts": {
"fix-cs": "vendor/bin/ecs check src tests --fix",
"check-cs": "vendor/bin/ecs check src tests",
"phpstan": "vendor/bin/phpstan"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}