-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.56 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
{
"name": "bellangelo/type-coverage-updater",
"description": "A tool to auto-update the type coverage of this Tomas's Type Coverage extension https://github.com/TomasVotruba/type-coverage",
"type": "library",
"bin": [
"bin/type-coverage-updater",
"bin/type-coverage-updater.php"
],
"scripts": {
"phpcs": "./vendor/bin/phpcs --standard=PSR12 src tests",
"phpcs:fix": "./vendor/bin/phpcbf --standard=PSR12 src tests",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon",
"tests": "./vendor/bin/phpunit tests",
"finalise-classes": "vendor/bin/swiss-knife finalize-classes src tests --skip-mocked",
"rector": "vendor/bin/rector process --config rector.php",
"docker:shell": "docker run --rm --interactive --tty --volume $PWD:/app composer /bin/sh"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10",
"phpunit/phpunit": "^11.3",
"phpstan/phpstan": "^1.12",
"tomasvotruba/type-coverage": "^0.3.1",
"rector/swiss-knife": "^0.2.35",
"rector/rector": "^1.2"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Bellangelo\\TypeCoverageUpdater\\": "src/",
"Bellangelo\\TypeCoverageUpdater\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Aggelos Bellos",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.3",
"nette/neon": "^3.4",
"symfony/console": "^7.1",
"symfony/process": "7.0.*"
}
}