-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathcomposer.json.dist
More file actions
32 lines (32 loc) · 745 Bytes
/
composer.json.dist
File metadata and controls
32 lines (32 loc) · 745 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
{
"name": "xoops/xoops-library",
"license": "GPL-2.0-or-later",
"type": "project",
"description": "The XOOPS Library distribution",
"autoload": {
"psr-4": {
"Xoops\\": "./xoops_lib/Xoops/",
"Xmf\\": "./xoops_lib/Xmf/"
}
},
"repositories": [
{
"type": "path",
"url": "../base-requires"
}
],
"require": {
"php": "^8.4",
"xoops/base-requires": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"roave/security-advisories": "dev-master"
},
"config": {
"vendor-dir": "./xoops_lib/vendor"
},
"extra": {
"xoops_modules_path": "./htdocs/modules"
}
}