-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.16 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
{
"name": "cerpus/edlib-resource-kit",
"description": "Create resource types for Edlib",
"homepage": "https://edlib.com/",
"license": "GPL-3.0-only",
"keywords": ["lti"],
"support": {
"docs": "https://docs.edlib.com/",
"issues": "https://github.com/cerpus/Edlib/issues"
},
"authors": [
{
"name": "Emma Cecilie Hughes",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Cerpus\\EdlibResourceKit\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cerpus\\EdlibResourceKit\\Tests\\": "tests"
}
},
"require": {
"php": "8.2.*|8.3.*|8.4.*",
"psr/clock": "^1.0",
"psr/clock-implementation": "^1.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"psr/simple-cache-implementation": "^1.0|^2.0|^3.0"
},
"require-dev": {
"cache/array-adapter": "^1.2",
"phpunit/phpunit": "^10.1",
"symfony/clock": "^6.3"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.8.x-dev"
}
}
}