forked from moodlehq/moodle-plugin-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·123 lines (123 loc) · 3.38 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "moodlehq/moodle-plugin-ci",
"description": "Helps running Moodle plugins analysis checks and tests under various CI environments.",
"keywords": ["moodle", "travis", "ci", "testing", "github", "actions"],
"type": "project",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Ruslan Kabalin",
"email": "ruslan@moodle.com",
"homepage": "https://moodle.com",
"role": "Maintainer"
},
{
"name": "Mark Nielsen",
"email": "mark.nielsen@blackboard.com",
"homepage": "https://www.blackboard.com",
"role": "Developer"
},
{
"name": "Sam Chaffee",
"email": "sam.chaffee@blackboard.com",
"homepage": "https://www.blackboard.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/moodlehq/moodle-plugin-ci/issues",
"source": "https://github.com/moodlehq/moodle-plugin-ci",
"docs": "https://moodlehq.github.io/moodle-plugin-ci/"
},
"repositories": [
{
"type": "package",
"package": {
"name": "moodlehq/moodle-local_codechecker",
"version": "3.0.1",
"source": {
"url": "https://github.com/moodlehq/moodle-local_codechecker.git",
"type": "git",
"reference": "v3.0.1"
}
}
},
{
"type": "package",
"package": {
"name": "moodlehq/moodle-local_ci",
"version": "1.0.10",
"source": {
"url": "https://github.com/moodlehq/moodle-local_ci.git",
"type": "git",
"reference": "v1.0.10"
}
}
},
{
"type": "package",
"package": {
"name": "moodlehq/moodle-local_moodlecheck",
"version": "1.0.7",
"source": {
"url": "https://github.com/moodlehq/moodle-local_moodlecheck.git",
"type": "git",
"reference": "v1.0.7"
}
}
}
],
"require": {
"php": ">=7.0.8",
"moodlehq/moodle-local_codechecker": "^3.0.1",
"moodlehq/moodle-local_ci": "^1.0.10",
"moodlehq/moodle-local_moodlecheck": "^1.0.7",
"sebastian/phpcpd": "^3.0",
"phpmd/phpmd": "^2.2",
"symfony/dotenv": "^3.4",
"symfony/filesystem": "^3.4",
"symfony/finder": "^3.4",
"symfony/console": "^3.4",
"symfony/yaml": "^3.4",
"symfony/process": "^3.4",
"php-parallel-lint/php-parallel-lint": "^1.2.0",
"php-parallel-lint/php-console-highlighter": "^0.5",
"psr/log": "^1.0",
"nikic/php-parser": "^4.0",
"stecman/symfony-console-completion": "^0.7.0",
"marcj/topsort": "^1.0",
"padraic/phar-updater": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"mockery/mockery": "^1.3"
},
"config": {
"platform": {
"php": "7.0.8"
}
},
"autoload": {
"psr-4": {
"MoodlePluginCI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MoodlePluginCI\\Tests\\": "tests/"
}
},
"bin": [
"bin/moodle-plugin-ci"
],
"scripts": {
"post-install-cmd": "@local-ci-install",
"post-update-cmd": "@local-ci-install",
"post-create-project-cmd": "@local-ci-install",
"local-ci-install": [
"@composer remove --no-update --working-dir=vendor/moodlehq/moodle-local_ci squizlabs/php_codesniffer",
"@composer update --prefer-dist --optimize-autoloader --working-dir=vendor/moodlehq/moodle-local_ci",
"cd vendor/moodlehq/moodle-local_ci && npm install --no-progress"
]
}
}