forked from zhiru/laravel-moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 933 Bytes
/
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
{
"name": "docasdev/laravel-moodle",
"description": "Laravel Moodle client",
"license": "MIT",
"version": "1.1.0",
"authors": [
{
"name": "Docas Developement",
"email": "docasdev@gmail.com",
"homepage": "https://github.com/DocasDev/laravel-moodle"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"guzzlehttp/guzzle": "^7.2",
"beberlei/assert": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "~10.1"
},
"extra": {
"laravel": {
"providers": [
"DocasDev\\LaravelMoodle\\LaravelMoodleServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"DocasDev\\LaravelMoodle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DocasDev\\LaravelMoodle\\Tests\\": "tests/"
}
}
}