-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
executable file
·114 lines (114 loc) · 3.07 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
{
"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": "Eloy Lafuente",
"email": "[email protected]",
"homepage": "https://moodle.com",
"role": "Maintainer"
},
{
"name": "Ruslan Kabalin",
"email": "[email protected]",
"homepage": "https://moodle.com",
"role": "Maintainer"
},
{
"name": "Mark Nielsen",
"email": "[email protected]",
"homepage": "https://www.blackboard.com",
"role": "Developer"
},
{
"name": "Sam Chaffee",
"email": "[email protected]",
"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": "vcs",
"url": "https://github.com/moodlehq/moodle-local_ci.git"
},
{
"type": "package",
"package": {
"name": "moodlehq/moodle-local_moodlecheck",
"version": "1.3.2",
"source": {
"url": "https://github.com/moodlehq/moodle-local_moodlecheck.git",
"type": "git",
"reference": "v1.3.2"
}
}
}
],
"require": {
"php": ">=7.4",
"moodlehq/moodle-cs": "^3.4.10",
"moodlehq/moodle-local_ci": "^1.0.31",
"moodlehq/moodle-local_moodlecheck": "^1.3.2",
"sebastian/phpcpd": "^6.0.3",
"sebastian/version": "^3.0.2",
"phpunit/php-timer": "^5.0.3",
"phpmd/phpmd": "^2.14.0",
"symfony/dotenv": "^5.4",
"symfony/filesystem": "^5.4",
"symfony/finder": "^5.4",
"symfony/console": "^5.4",
"symfony/yaml": "^5.4",
"symfony/process": "^5.4",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"php-parallel-lint/php-console-highlighter": "^1.0.0",
"psr/log": "^1.1.4",
"nikic/php-parser": "^4.14",
"marcj/topsort": "^2.0.0",
"phpcompatibility/php-compatibility": "dev-develop#96072c30",
"laravel-zero/phar-updater": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"mockery/mockery": "^1.5.0",
"friendsofphp/php-cs-fixer": "^3.59.3",
"vimeo/psalm": "5.19.*"
},
"config": {
"platform": {
"php": "7.4.0"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"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": [
"cd vendor/moodlehq/moodle-local_ci && npm install --no-progress"
]
}
}