-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
52 lines (52 loc) · 1.18 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
{
"name": "element-io/matrix-moodle-plugin",
"description": "Moodle plugin for Matrix integration",
"license": "Apache-2.0",
"authors": [
{
"name": "New Vector Ltd. (trading as Element)",
"email": "[email protected]"
},
{
"name": "Andreas Möller",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ergebnis/clock": "^2.3.0",
"php-curl-class/php-curl-class": "^9.5.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.20.0",
"ergebnis/data-provider": "^1.0.0",
"ergebnis/php-cs-fixer-config": "~3.4.0",
"fakerphp/faker": "^1.19.0",
"moodle/moodle": ">=4.0.1",
"phpunit/phpunit": "^9.5.20",
"psalm/plugin-phpunit": "~0.16.1",
"symfony/var-dumper": "^5.4.6",
"vimeo/psalm": "^4.22.0"
},
"autoload": {
"psr-4": {
"mod_matrix\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"mod_matrix\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true
},
"platform": {
"php": "7.4"
},
"sort-packages": true
}
}