-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautoload.php
More file actions
24 lines (22 loc) · 832 Bytes
/
autoload.php
File metadata and controls
24 lines (22 loc) · 832 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
<?php
/*
* Forums addon for Bear CMS
* https://github.com/bearcms/forums-addon
* Copyright (c) Amplilabs Ltd.
* Free to use under the MIT license.
*/
BearFramework\Addons::register('bearcms/forums-addon', __DIR__, [
'require' => [
'bearcms/bearframework-addon',
'bearframework/localization-addon',
'ivopetkov/html-server-components-bearframework-addon',
'ivopetkov/form-bearframework-addon',
'ivopetkov/users-bearframework-addon',
'ivopetkov/server-requests-bearframework-addon',
'ivopetkov/client-packages-bearframework-addon',
'ivopetkov/form-elements-bearframework-addon',
'ivopetkov/modal-windows-bearframework-addon',
'ivopetkov/html5-dom-document-js-bearframework-addon',
'ivopetkov/rate-limiter-bearframework-addon'
]
]);