-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
54 lines (54 loc) · 1.57 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": "symplify/vendor-patches",
"description": "Generate vendor patches for packages with single command",
"license": "MIT",
"bin": [
"bin/vendor-patches"
],
"require": {
"php": ">=8.2",
"nette/utils": "^3.2",
"symfony/console": "^6.4",
"sebastian/diff": "^5.1",
"cweagans/composer-patches": "^1.7",
"illuminate/container": "^10.39",
"symfony/finder": "^6.4",
"webmozart/assert": "^1.11"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.2.5",
"phpstan/phpstan": "^1.10.50",
"symplify/easy-coding-standard": "^12.0",
"symplify/phpstan-extensions": "^11.1",
"phpstan/extension-installer": "^1.2",
"php-parallel-lint/php-parallel-lint": "^1.3",
"tomasvotruba/class-leak": "^0.2"
},
"autoload": {
"psr-4": {
"Symplify\\VendorPatches\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symplify\\VendorPatches\\Tests\\": "tests"
}
},
"extra": {
"enable-patching": true
},
"config": {
"platform-check": false,
"allow-plugins": {
"cweagans/composer-patches": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --ansi --error-format symplify",
"rector": "vendor/bin/rector process --dry-run --ansi"
}
}