This repository has been archived by the owner on Jan 8, 2025. It is now read-only.
forked from phpcq/travis-configuration-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.84 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
{
"name": "contao-community-alliance/build-system-tool-travis-configuration-check",
"description": "Validation tool to ensure that the contents of a .travis.yml make sense.",
"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-travis-configuration-check",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/contao-community-alliance/build-system-tool-travis-configuration-check"
},
"autoload": {
"psr-4": {
"ContaoCommunityAlliance\\BuildSystem\\Tool\\TravisConfigurationCheck\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ContaoCommunityAlliance\\BuildSystem\\Tool\\TravisConfigurationCheck\\Test\\": "tests"
}
},
"require": {
"php": ">=5.3",
"symfony/console": "~2.3",
"symfony/yaml": "~2.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"pdepend/pdepend": "1.1.*",
"phpunit/phpunit": ">=3.7.10,<4-dev",
"contao-community-alliance/build-system": "~1.0",
"contao-community-alliance/build-system-tool-branch-alias-validation": "~1.0",
"contao-community-alliance/coding-standard": "~1.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"bin": ["bin/check-travis-configuration.php"],
"prefer-stable": true,
"minimum-stability": "dev"
}