-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 927 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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "sproutcms/module",
"description": "Template Sprout 4 Module",
"type": "library",
"license": "GPL-2.0-or-later",
"keywords": ["sprout", "cms", "content-management-system", "framework", "mysql"],
"autoload": {
"psr-4": {
"SproutModules\\Demo\\": "src/"
}
},
"require": {
"sproutcms/cms": "^4"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"locals": {
"karmabunny/kb": "../kbphp",
"karmabunny/pdb": "../kbpdb",
"karmabunny/rdb": "../kbrdb",
"karmabunny/router": "../kbrouter",
"sproutcms/cms": "../sprout3"
}
},
"scripts": {
"patch-locals": "@php tools/patch_locals.php",
"convert-ns": "@php tools/convert_ns.php"
}
}