This repository has been archived by the owner on Sep 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
74 lines (74 loc) · 1.74 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
{
"name": "pressbooks/pressbooks-lti-provider",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"description": "A plugin which turns Pressbooks into an LTI provider.",
"homepage": "https://github.com/pressbooks/pressbooks-lti-provider",
"authors": [
{
"name": "Book Oven Inc.",
"email": "[email protected]",
"homepage": "https://pressbooks.org"
}
],
"keywords": ["pressbooks", "lti", "lms"],
"support": {
"email": "[email protected]",
"issues": "https://github.com/pressbooks/pressbooks-lti-provider/issues/",
"source": "https://github.com/pressbooks/pressbooks-lti-provider/"
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=7.4",
"composer/installers": "^2",
"pressbooks/mix": "^2.1",
"izumi-kun/lti": "^1.2",
"phpcompatibility/php-compatibility": "^9.3"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.0.1",
"pressbooks/coding-standards": "^1.1"
},
"archive": {
"exclude": [
".editorconfig",
".gitattributes",
".github",
".gitignore",
".phpstorm.meta.php",
".stylelintrc",
".travis.yml",
".tx",
"assets/src",
"bin",
"codecov.yml",
"phpcs.ruleset.xml",
"phpunit.xml",
"tests",
"webpack.mix.js",
"yarn.lock"
]
},
"scripts": {
"test": [
"vendor/bin/phpunit --configuration phpunit.xml"
],
"test-coverage": [
"vendor/bin/phpunit --configuration phpunit.xml --coverage-clover coverage.xml --coverage-html=./coverage-reports"
],
"standards": [
"vendor/bin/phpcs --standard=phpcs.ruleset.xml *.php inc/ bin/"
],
"fix": [
"vendor/bin/phpcbf --standard=phpcs.ruleset.xml *.php inc/ bin/"
]
}
}