forked from vaimo/composer-patches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
124 lines (124 loc) · 3.87 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "vaimo/composer-patches",
"type": "composer-plugin",
"license": "MIT",
"description": "Applies a patch from a local or remote file to any package that is part of a given composer project. Patches can be defined both on project and on package level. Optional support for patch versioning, sequencing, custom patch applier configuration and patch command for testing/troubleshooting added patches.",
"require": {
"php": ">=5.3.0",
"ext-json": "*",
"composer-plugin-api": "^1.0 || ^2.0",
"drupol/phposinfo": "^1.6",
"seld/jsonlint": "^1.7.1",
"vaimo/topological-sort": "^1.0"
},
"require-dev": {
"composer/composer": "^1.0 || ^2.0",
"vaimo/composer-patches-proxy": "1.0.0",
"phpcompatibility/php-compatibility": ">=9.1.1",
"squizlabs/php_codesniffer": ">=2.9.2",
"sebastian/phpcpd": ">=1.4.3",
"phpmd/phpmd": ">=2.6.0",
"vaimo/composer-changelogs": "^0.17.0"
},
"config": {
"platform": {
"php": "5.3.9"
},
"process-timeout": 3000
},
"authors": [
{
"name": "Allan Paiste",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/vaimo/composer-patches",
"docs": "https://github.com/vaimo/composer-patches",
"issues": "https://github.com/vaimo/composer-patches/issues"
},
"keywords": [
"composer plugin",
"os-specific config",
"configurable patch applier",
"patching",
"patcher",
"version restriction",
"indirect restrictions",
"patch description",
"remote patch files",
"downloaded patches",
"package bug-fix",
"package patches",
"patch exclusion",
"development patches",
"hot-fixes",
"hotfixes",
"fixes",
"back-ports",
"backports",
"environment flags",
"skipped packages",
"patch skipping",
"maintenance tools",
"maintenance",
"tools",
"multiple formats",
"patch branching",
"multi-version patches",
"bundled patches",
"bulk patches",
"patch command",
"composer command",
"utilities",
"utils",
"utility",
"plugin",
"patch header",
"patch meta-data",
"resolve patches",
"patch search",
"patch resolve"
],
"minimum-stability": "stable",
"extra": {
"class": "Vaimo\\ComposerPatches\\Plugin",
"changelog": {
"source": "changelog.json",
"output": {
"md": "CHANGELOG.md"
}
}
},
"scripts-descriptions": {
"test": "Run tests",
"code:test": "Run tests",
"code:test!": "Run tests (and purge dependency locks before doing so)",
"code:lint": "Run static code analysis for the source code",
"code:fix": "Apply automatic fixes to the code based on the static code analysis (where applicable)",
"code:deps": "Make sure that dependencies have code that will actually work with platform requirements defined"
},
"scripts": {
"test": "bin/test",
"code:test": "bin/test",
"code:test!": "PURGE=1 bin/test",
"code:lint": "bin/analyse",
"code:deps": "bin/analyse-dependencies",
"code:fix": "bin/normalise",
"ci:build": "composer code:lint && composer code:deps && composer code:test!",
"pre-install-cmd": "bin/bootstrap-test-env",
"post-install-cmd": "bin/bootstrap",
"post-update-cmd": "bin/bootstrap"
},
"autoload": {
"psr-4": {
"Vaimo\\ComposerPatches\\": "src"
}
},
"repositories": [
{
"type": "path",
"url": "modules/proxy-plugin"
}
]
}