-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (53 loc) · 1.51 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
{
"name": "lukecarrier/moodle-componentmgr",
"description": "A package manager for Moodle components",
"keywords": [
"moodle",
"package",
"plugin"
],
"homepage": "https://github.com/LukeCarrier/moodle-componentmgr",
"license": "GPL-3.0+",
"authors": [
{
"name": "Luke Carrier",
"email": "[email protected]",
"homepage": "http://luke.carrier.im/"
}
],
"support": {
"issues": "https://github.com/LukeCarrier/moodle-componentmgr/issues",
"wiki": "https://github.com/LukeCarrier/moodle-componentmgr/wiki"
},
"autoload": {
"psr-4": {
"ComponentManager\\": "lib/ComponentManager/"
}
},
"bin": [
"libexec/componentmgr"
],
"require": {
"php": ">= 5.6.0",
"ext-curl": "*",
"ext-dom": "*",
"ext-zip": "*",
"bramus/monolog-colored-line-formatter": "2.0.*",
"composer/ca-bundle": "^1.0",
"knplabs/github-api": "^2.6",
"php-http/guzzle6-adapter": "^1.1",
"php-http/httplug": "^1.1",
"psr/log": "1.0.*",
"symfony/config": "3.3.*",
"symfony/console": "3.3.*",
"symfony/dependency-injection": "3.3.*",
"symfony/filesystem": "3.3.*",
"symfony/http-foundation": "3.3.*",
"symfony/monolog-bundle": "~3.1",
"symfony/process": "3.3.*",
"symfony/yaml": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "5.7.*"
}
}