-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.76 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.76 KB
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
56
57
58
{
"name": "symplify/vendor-patches",
"description": "Generate vendor patches for packages with single command",
"license": "MIT",
"bin": [
"bin/vendor-patches"
],
"require": {
"php": ">=8.3",
"entropy/entropy": "dev-main",
"symfony/finder": "^7.4|8.0.*",
"sebastian/diff": "^7.0",
"cweagans/composer-patches": "^1.7.3 || ^2.0",
"webmozart/assert": "^2.1"
},
"require-dev": {
"symplify/phpstan-rules": "^14.9.11",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpecs/phpecs": "^2.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1.33",
"phpunit/phpunit": "^12.5.4",
"rector/jack": "^0.5.1",
"rector/rector": "^2.3",
"shipmonk/composer-dependency-analyser": "^1.8",
"symplify/phpstan-extensions": "^12.0",
"tomasvotruba/class-leak": "^2.1"
},
"autoload": {
"psr-4": {
"Symplify\\VendorPatches\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symplify\\VendorPatches\\Tests\\": "tests"
}
},
"extra": {
"enable-patching": true
},
"config": {
"sort-packages": true,
"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",
"rector-fix": "vendor/bin/rector process --ansi",
"test": "vendor/bin/phpunit"
}
}