-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.28 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
{
"name": "phing/task-hg",
"description": "Mercurial related phing tasks.",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "LGPL-3.0-only",
"type": "phing-extension",
"authors": [
{
"name": "Siad Ardroumli",
"email": "[email protected]"
}
],
"require": {
"php": ">= 7.4",
"siad007/versioncontrol_hg": "^1.0"
},
"require-dev": {
"phing/phing": "3.0.x-dev"
},
"autoload": {
"psr-4": {
"Phing\\Task\\Ext\\Hg\\": ""
}
},
"extra": {
"phing-custom-taskdefs": {
"hgadd": "Phing\\Task\\Ext\\Hg\\HgAddTask",
"hgarchive": "Phing\\Task\\Ext\\Hg\\HgArchiveTask",
"hgclone": "Phing\\Task\\Ext\\Hg\\HgCloneTask",
"hgcommit": "Phing\\Task\\Ext\\Hg\\HgCommitTask",
"hginit": "Phing\\Task\\Ext\\Hg\\HgInitTask",
"hglog": "Phing\\Task\\Ext\\Hg\\HgLogTask",
"hgpull": "Phing\\Task\\Ext\\Hg\\HgPullTask",
"hgpush": "Phing\\Task\\Ext\\Hg\\HgPushTask",
"hgrevert": "Phing\\Task\\Ext\\Hg\\HgRevertTask",
"hgtag": "Phing\\Task\\Ext\\Hg\\HgTagTask",
"hgupdate": "Phing\\Task\\Ext\\Hg\\HgUpdateTask"
}
}
}