forked from aabumuslimov/m2_patchchk
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (53 loc) · 1.45 KB
/
composer.json
File metadata and controls
59 lines (53 loc) · 1.45 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
59
{
"name": "aabumuslimov/m2_patchchk",
"description": "Visual tool to validate if the patch (code diff) file is applicable over a list of instances",
"minimum-stability": "stable",
"prefer-stable": true,
"type": "project",
"license": "GNU",
"authors": [
{
"name": "Andrey Abumuslimov",
"email": "warpbox@gmail.com"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "isitnikov/m2-convert-patch-for-composer-install",
"version": "1.2.2",
"dist": {
"url": "https://raw.githubusercontent.com/isitnikov/m2-convert-patch-for-composer-install/master/convert-for-composer.php",
"type": "file"
}
}
},
{
"type": "composer",
"url": "https://repo.magento.com"
}
],
"autoload": {
"psr-4": {
"Magento\\PatchChecker\\": "app/code/"
}
},
"require": {
"components/jquery": "3.2",
"isitnikov/m2-convert-patch-for-composer-install": "1.2.2",
"magento/quality-patches": "^1.1"
},
"scripts": {
"post-install-cmd": [
"@copyJqueryMin",
"@copyPatchConverter"
],
"post-update-cmd": [
"@copyJqueryMin",
"@copyPatchConverter"
],
"copyJqueryMin": "cp -f vendor/components/jquery/jquery.min.js design/js/jquery/jquery.min.js",
"copyPatchConverter": "cp -f vendor/isitnikov/m2-convert-patch-for-composer-install/convert-for-composer.php app/bin/patch-converter.php"
}
}