This repository has been archived by the owner on Jan 8, 2025. It is now read-only.
forked from phpcq/branch-alias-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.61 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
{
"name": "contao-community-alliance/build-system-tool-branch-alias-validation",
"description": "Validation tool to ensure that all branches are ahead of the most recent tag.",
"license": "MIT",
"authors": [
{
"name":"Christian Schiffler",
"email":"[email protected]",
"homepage":"http://www.cyberspectrum.de",
"role":"Developer"
},
{
"name":"Tristan Lins",
"email":"[email protected]",
"homepage":"http://bit3.de",
"role":"Developer"
}
],
"support":{
"issues":"https://github.com/contao-community-alliance/build-system-tool-branch-alias-validation/issues",
"irc":"irc://irc.freenode.org/contao.dev",
"source":"https://github.com/contao-community-alliance/build-system-tool-branch-alias-validation"
},
"autoload": {
"psr-4": {
"ContaoCommunityAlliance\\BuildSystem\\Tool\\BranchAliasValidation\\" : "src"
}
},
"autoload-dev": {
"psr-4": {
"ContaoCommunityAlliance\\BuildSystem\\Tool\\BranchAliasValidation\\Test\\" : "tests"
}
},
"require": {
"php": ">=5.3.4",
"contao-community-alliance/build-system-repository-git": "~1.0",
"symfony/console": "~2.3"
},
"require-dev": {
"contao-community-alliance/build-system-all-tasks": "~1.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"bin": ["bin/validate-branch-alias.php"],
"prefer-stable": true,
"minimum-stability": "dev"
}