This repository has been archived by the owner on Oct 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
94 lines (93 loc) · 3.65 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
{
"name": "iet-ou/cloudengine",
"description": "CloudEngine powers Cloudworks <https://cloudworks.ac.uk> | © The Open University (IET).",
"keywords": [ "OULDI", "Jisc", "Cloudworks", "IET-OU", "OpenUniversity" ],
"homepage": "https://cloudworks.ac.uk",
"type": "project",
"license": "GPL-2.0-only",
"time": "2010-10-06",
"authors": [
{
"name": "Juliette Culver",
"role": "Lead developer"
},
{
"name": "LTT team, Institute of Educational Technology",
"homepage": "https://iet.open.ac.uk",
"role": "Developer(s)"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/IET-OU/cloudengine"
},
"require": {
"php": ">=5.5.9",
"ext-gd": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-zip": "*",
"dariuszp/cli-progress-bar": "^1.0.2",
"wesbos/burner-email-providers": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "3.1.1",
"php-parallel-lint/php-parallel-lint": "^1.0.0",
"nette/finder": "^2.5"
},
"suggest": {
"phpmd/phpmd": "^2.6.0"
},
"scripts": {
"copy-config": [
"cp -n system/application/config/config.dist.php system/application/config/config.php",
"cp -n system/application/config/cloudengine.dist.php system/application/config/cloudengine.php",
"cp -n system/application/config/database.dist.php system/application/config/database.php"
],
"npm-install": [
"npm i grunt-cli@^1.2 grunt@^1.0 grunt-contrib-jshint@^1.1 grunt-contrib-csslint@^2",
"# npm i grunt-contrib-validate-xml@^0.0.1"
],
"test": [
"parallel-lint index.php system tests",
"node_modules/.bin/grunt",
"phpunit -c tests/phpunit.xml"
],
"unit": "phpunit -c tests/phpunit.xml",
"phpcs": "phpcs --standard=PSR2 --extensions=php system/application/libraries/Api*",
"fix": "phpcbf --standard=PSR2 --extensions=php system/application/libraries/Api*",
"version.json": [
"(printf '{ \"v\": \"'; printf `git describe --long --dirty`; printf '\", \"t\": \"'; date | tr -d '\n'; printf '\" }') > version.json # date -Is"
],
"cli-help": "php index.php cli/help",
"cli-version": "php index.php cli/version",
"banned-user-comments": "php index.php cli/banned_user_comments 2017-01-01 --limit:-1 # Un-limited.",
"delete-inactive-users": "php index.php cli/delete_inactive_users 2017-01-01 --limit=10 --dry-run"
},
"autoload": {
"classmap": [ "system/application/helpers/", "system/application/libraries/" ]
},
"repositories": [ {
"type": "package",
"package": {
"name": "wesbos/burner-email-providers",
"version": "1.0.0",
"dist": {
"type": "zip",
"url": "https://github.com/wesbos/burner-email-providers/archive/edbf21994f78c23d9bab244973249ba68f9ede85.zip"
}
}
} ],
"minimum-stability": "beta",
"prefer-stable": true,
"extra": {
"//": [
"https://bitbucket.org/cloudengine/cloudengine/commits/all?page=17",
"https://bitbucket.org/cloudengine/cloudengine/commits/38d061a046b8b246a905cf1018cef8a595aeae25",
"https://github.com/IET-OU/cloudengine/commit/65782fa095e7155401aaaab694ea597b7e88f709"
, "https://github.com/wesbos/burner-email-providers#edbf21994f"
]
}
}