-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.52 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
55
{
"name": "tomasvotruba/handyman",
"type": "phpstan-extension",
"license": "MIT",
"description": "Automate repeated steps when coming to a PHP project or create new package",
"require": {
"php": "^8.2",
"illuminate/container": "^11.36",
"symfony/console": "^7.2",
"symfony/process": "^7.2",
"symfony/finder": "^7.2",
"nette/utils": "^4.0",
"phpstan/phpstan": "^2.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"rector/rector": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpunit/phpunit": "^11.5",
"rector/swiss-knife": "^2.0",
"symplify/easy-coding-standard": "^12.3",
"tomasvotruba/type-coverage": "^2.0",
"tomasvotruba/class-leak": "^2.0",
"tomasvotruba/unused-public": "^2.0",
"tracy/tracy": "^2.10",
"nikic/php-parser": "^5.3",
"symplify/phpstan-extensions": "^12.0"
},
"autoload": {
"psr-4": {
"TomasVotruba\\Handyman\\": "src"
},
"files": [
"src/fast-functions.php"
]
},
"autoload-dev": {
"psr-4": {
"TomasVotruba\\Handyman\\Tests\\": "tests"
},
"classmap": [
"stubs"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan",
"check-cs": "vendor/bin/ecs",
"fix-cs": "vendor/bin/ecs --fix"
}
}