-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
48 lines (43 loc) · 1.25 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
{
"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": "[email protected]"
}
],
"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"
}
}
}
],
"require": {
"components/jquery": "3.2",
"isitnikov/m2-convert-patch-for-composer-install": "1.2.2"
},
"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"
}
}