-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.1 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
{
"name": "bellangelo/php-baseline-updater",
"description": "A tool to auto-update the baseline of several PHP tools",
"type": "library",
"bin": [
"bin/php-baseline-updater",
"bin/php-baseline-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",
"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"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Bellangelo\\PhpBaselineUpdater\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bellangelo\\PhpBaselineUpdater\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Aggelos Bellos",
"email": "aggelosbellos7@gmail.com"
}
],
"require": {
"php": ">=8.3",
"symfony/console": "^7.1",
"gitonomy/gitlib": "^1.5"
}
}