-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.11 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
50
51
52
53
54
{
"name": "brianhenryie/php-diff-test",
"description": "Run only the tests that apply to changed lines.",
"license": "MIT",
"authors": [
{
"name": "BrianHenryIE",
"email": "[email protected]"
}
],
"bin": [
"bin/difftest"
],
"autoload":{
"psr-4": {
"BrianHenryIE\\PhpDiffTest\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BrianHenryIE\\PhpDiffTest\\": "tests"
},
"classmap": ["tests"]
},
"require": {
"php": ">=8.1",
"composer-runtime-api": "^2.2",
"gitonomy/gitlib": "^1.4",
"nikic/php-parser": "^5.3",
"phpunit/php-code-coverage": "*",
"phpunit/phpunit": "*",
"symfony/console": "^6.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpstan/phpstan": "^1.9"
},
"scripts": {
"lint": [
"vendor/bin/phpcbf || true",
"vendor/bin/phpcs || true",
"vendor/bin/phpstan analyse --memory-limit 1G"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true,
"platform": {
"php": "8.1"
}
}
}