forked from dan-leech/moodle-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 929 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
40
41
42
{
"name": "fidelo-software/moodle-php-sdk",
"description": "PHP SDK for Moodle RESTful APIs",
"license": "MIT",
"authors": [
{
"name": "Agustín Rodríguez",
"email": "agurz@icloud.com"
},
{
"name": "Daniil Kostin",
"email": "dan-leech@mail.ru"
},
{
"name": "Mark Koopmann",
"email": "m.koopmann@fidelo.com"
}
],
"require": {
"zeptech/annotations": "1.1.0"
},
"require-dev": {
"nesbot/carbon": "~1.21",
"phpunit/phpunit": "^5.0",
"vlucas/phpdotenv": "*"
},
"autoload": {
"psr-4": {
"MoodleSDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MoodleSDK\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}