-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1012 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 1012 Bytes
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
{
"name": "magicoli/opensim-engine",
"description": "OpenSimulator Engine - Framework-agnostic core functionality for OpenSim grids",
"type": "library",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Gudule Lapointe",
"email": "gudule@speculoos.world"
}
],
"require": {
"php": ">=7.4",
"laminas/laminas-escaper": "^2.12",
"laminas/laminas-filter": "^2.24"
},
"require-dev": {
"magicoli/opensim-rest-php": "^1.0"
},
"autoload": {
"psr-4": {
"OpenSim\\Engine\\": "src/"
},
"files": [
"includes/functions-escaping.php"
]
},
"scripts": {
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || cp vendor/magicoli/opensim-rest-php/class-rest.php contrib/magicoli/opensim-rest-php/"
]
},
"suggest": {
"ezyang/htmlpurifier": "For advanced HTML sanitization if rich content is needed"
}
}