-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·40 lines (40 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
{
"name": "connectholland/academy-addon",
"description": "Addon to implement an academy module in an eportfolio",
"authors": [
{
"name": "Deborah van der Vegt",
"email": "[email protected]"
}
],
"require": {
"connectholland/windmill": "^6.10",
"connectholland/eportfolio": "^8.0",
"connectholland/eportfolio-material-design-skin": "^3.0",
"connectholland/eportfolio-activity-plugin": "^2.0"
},
"repositories": [
{
"type": "composer",
"url": "https://composer.packages.connectholland.nl"
},
{
"type": "vcs",
"url": "svn+ssh://svn.repositories.connectholland.nl/srv/svn/main/eportfolio/plugins/eportfolio_activity",
"trunk-path": "trunk",
"branches-path": "test",
"tags-path": "online"
}
],
"autoload": {
"psr-4": {
"ConnectHolland\\Eportfolio\\Addon\\Academy\\": "src/"
},
"classmap": [
"src/Modules",
"src/Mongo",
"src/xsl",
"src/var"
]
}
}