-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautoload.php
More file actions
35 lines (33 loc) · 1.38 KB
/
autoload.php
File metadata and controls
35 lines (33 loc) · 1.38 KB
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
<?php
/*
* Bear CMS addon for Bear Framework
* https://bearcms.com/
* Copyright (c) Amplilabs Ltd.
* Free to use under the MIT license.
*/
BearFramework\Addons::register('bearcms/bearframework-addon', __DIR__, [
'require' => [
'bearframework/emails-addon',
'bearframework/localization-addon',
'bearframework/tasks-addon',
'bearframework/models-addon',
'ivopetkov/html-server-components-bearframework-addon',
'ivopetkov/image-gallery-bearframework-addon',
'ivopetkov/navigation-menu-bearframework-addon',
'ivopetkov/users-bearframework-addon',
'ivopetkov/server-requests-bearframework-addon',
'ivopetkov/form-bearframework-addon',
'ivopetkov/data-bundle-bearframework-addon',
'ivopetkov/encryption-bearframework-addon',
'ivopetkov/notifications-bearframework-addon',
'ivopetkov/client-packages-bearframework-addon',
'ivopetkov/form-elements-bearframework-addon',
'ivopetkov/google-fonts-embed-bearframework-addon',
'ivopetkov/responsively-lazy-bearframework-addon',
'ivopetkov/html5-dom-document-js-bearframework-addon',
'ivopetkov/responsive-attributes-bearframework-addon',
'ivopetkov/css-to-attributes-bearframework-addon',
'ivopetkov/touch-events-js-bearframework-addon',
'ivopetkov/rate-limiter-bearframework-addon'
]
]);