-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.03 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/questionbank-client",
"description": "Client to talk do the Cerpus Questionbank Service",
"license": "GPL-3.0-only",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"cerpus/cerpushelper": "^2.0",
"guzzlehttp/guzzle": "^7.0",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"shrikeh/teapot": "^2.3",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.5",
"fakerphp/faker": "^1.16"
},
"authors": [
{
"name": "Thomas Horn Sivertsen",
"email": "[email protected]"
},
{
"name": "Odd-Arne Johansen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Cerpus\\QuestionBankClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cerpus\\QuestionBankClientTests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"\\Cerpus\\QuestionBankClient\\Providers\\QuestionBankClientServiceProvider"
]
}
}
}