-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.64 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
56
57
58
59
60
61
62
63
{
"name": "remotelearner/moodle-plugin-travis",
"description": "Assists with running Moodle plugins in Travis CI. Based on Moodlerooms initial work",
"keywords": ["moodle", "travis", "ci", "testing"],
"type": "project",
"license": "GPL-3.0",
"authors": [
{
"name": "Derek Henderson",
"email": "[email protected]",
"homepage": "http://remote-learner.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"moodlerooms/moodle-coding-standard": "^2.0.0",
"poetgroup/poet-coding-standard": "dev-master",
"squizlabs/php_codesniffer": "^2.6",
"sebastian/phpcpd": "^2.0",
"phpmd/phpmd": "^2.2",
"symfony/filesystem": "^2.7",
"symfony/finder": "^2.7",
"symfony/console": "^2.7",
"symfony/yaml": "^2.7",
"symfony/process": "^2.7",
"jakub-onderka/php-parallel-lint": "^0.9",
"jakub-onderka/php-console-highlighter": "^0.3",
"psr/log": "^1.0",
"nikic/php-parser": "^2.0",
"vlucas/phpdotenv": "^2.0",
"stecman/symfony-console-completion": "^0.6.0",
"wimg/php-compatability":"^7.0.6",
"marcj/topsort": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.7",
"friendsofphp/php-cs-fixer": "^1.10"
},
"config": {
"platform": {
"php": "5.4"
}
},
"autoload": {
"psr-4": {
"Moodlerooms\\MoodlePluginCI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Moodlerooms\\MoodlePluginCI\\Tests\\": "tests/"
}
},
"bin": [
"bin/moodle-plugin-travis"
],
"scripts": {
"test": "phpunit",
"lint": "parallel-lint src tests bin/moodle-plugin-travis",
"fix": "php-cs-fixer fix -v"
}
}