]> BookStack Code Mirror - bookstack/blob - resources/views/help/licenses.blade.php
a87d9e958b2e27bb1ec753b37bff82125ea9f980
[bookstack] / resources / views / help / licenses.blade.php
1 @extends('layouts.simple')
2
3 @section('body')
4
5     <div class="container small">
6
7         <div class="my-l">&nbsp;</div>
8
9         <div class="card content-wrap auto-height">
10             <h1 class="list-heading">Licenses</h1>
11
12             <p>
13                 This page details license information for BookStack in addition to the projects & libraries that are used within BookStack.
14                 Many projects listed may only be used in a development context.
15             </p>
16
17             <ul>
18                 <li><a href="#bookstack-license">BookStack License</a></li>
19                 <li><a href="#php-lib-licenses">PHP Library Licenses</a></li>
20                 <li><a href="#js-lib-licenses">JavaScript Library Licenses</a></li>
21                 <li><a href="#js-lib-licenses">Other Licenses</a></li>
22             </ul>
23         </div>
24
25         <div id="bookstack-license" class="card content-wrap auto-height">
26             <h3 class="list-heading">BookStack License</h3>
27             <div style="white-space: pre-wrap;" class="mb-m">{{ $license }}</div>
28             <p>BookStack® is a UK registered trade mark of Daniel Brown. </p>
29         </div>
30
31         <div id="php-lib-licenses" class="card content-wrap auto-height">
32             <h3 class="list-heading">PHP Library Licenses</h3>
33             <div style="white-space: pre-wrap;">{{ $phpLibData }}</div>
34         </div>
35
36         <div id="js-lib-licenses" class="card content-wrap auto-height">
37             <h3 class="list-heading">JavaScript Library Licenses</h3>
38             <div style="white-space: pre-wrap;">{{ $jsLibData }}</div>
39         </div>
40
41         <div id="other-licenses" class="card content-wrap auto-height">
42             <h3 class="list-heading">Other Licenses</h3>
43             <div style="white-space: pre-line;">BookStack makes heavy use of PHP:
44                 License: PHP License, version 3.01
45                 License File: https://www.php.net/license/3_01.txt
46                 Copyright: Copyright (c) 1999 - 2019 The PHP Group. All rights reserved.
47                 Link: https://www.php.net/
48                 -----------
49                 BookStack uses Icons from Google Material Icons:
50                 License: Apache License Version 2.0
51                 License File: https://github.com/google/material-design-icons/blob/master/LICENSE
52                 Copyright: Copyright 2020 Google LLC
53                 Link: https://github.com/google/material-design-icons
54                 -----------
55                 BookStack is distributed with TinyMCE:
56                 License: MIT
57                 License File: https://github.com/tinymce/tinymce/blob/release/6.7/LICENSE.TXT
58                 Copyright: Copyright (c) 2022 Ephox Corporation DBA Tiny Technologies, Inc.
59                 Link: https://github.com/tinymce/tinymce
60             </div>
61         </div>
62     </div>
63
64 @endsection