-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.46 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.46 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
{
"name": "kranack/lint-tool",
"description": "Lint Tool CLI",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Damien Calesse",
"email": "damien.calesse@gmail.com"
}
],
"bin": [ "lint-tool" ],
"scripts": {
"test": "phpunit --colors=always --no-coverage test",
"analyse": "phpstan analyse src test --level 6",
"infection": "XDEBUG_MODE=coverage infection --threads=4 --only-covered"
},
"require": {
"php": "^7.1",
"php-parallel-lint/php-parallel-lint": "^1.1",
"symfony/console": "^4.3",
"phar-io/version": "^2.0",
"kranack/composer-cleanup-plugin": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "^1.3",
"phpstan/phpstan": "^0.12.4",
"infection/infection": "^0.15.0",
"phpstan/phpstan-mockery": "^0.12.2",
"phpstan/extension-installer": "^1.0"
},
"autoload": {
"psr-4": {
"kranack\\Lint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"kranack\\Lint\\Test\\": "test/"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/kranack/composer-cleanup-plugin.git"
}
],
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"ocramius/package-versions": true,
"kranack/composer-cleanup-plugin": true
}
}
}