Skip to content

Commit c16b897

Browse files
authored
Merge pull request #2 from devilbox-community/release-v3.0.0-beta-0.5
2 parents 1d5d1e7 + 42dce21 commit c16b897

File tree

9,520 files changed

+749743
-820777
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

9,520 files changed

+749743
-820777
lines changed

.devilbox/www/config.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
putenv('RES_OPTIONS=retrans:1 retry:1 timeout:1 attempts:1');
1414

1515

16-
$DEVILBOX_VERSION = 'v3.0.0-beta-0.4';
17-
$DEVILBOX_DATE = '2023-01-30';
16+
$DEVILBOX_VERSION = 'v3.0.0-beta-0.5';
17+
$DEVILBOX_DATE = '2024-06-18';
1818
$DEVILBOX_API_PAGE = 'devilbox-api/status.json';
1919

2020
//

.devilbox/www/htdocs/_ajax_callback.php

+10-10
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@
4444
$_GET['software'] => (($version = loadClass('Php')->getAngularCliVersion()) !== false) ? $version : $no
4545
));
4646
}
47-
else if ($_GET['software'] == 'asgardcms_installer') {
48-
echo json_encode(array(
49-
$_GET['software'] => (($version = loadClass('Php')->getAsgardCmsInstallerVersion()) !== false) ? $version : $no
50-
));
51-
}
47+
// else if ($_GET['software'] == 'asgardcms_installer') {
48+
// echo json_encode(array(
49+
// $_GET['software'] => (($version = loadClass('Php')->getAsgardCmsInstallerVersion()) !== false) ? $version : $no
50+
// ));
51+
// }
5252
else if ($_GET['software'] == 'codeception') {
5353
echo json_encode(array(
5454
$_GET['software'] => (($version = loadClass('Php')->getCodeceptionVersion()) !== false) ? $version : $no
@@ -84,11 +84,11 @@
8484
$_GET['software'] => (($version = loadClass('Php')->getLaravelInstallerVersion()) !== false) ? $version : $no
8585
));
8686
}
87-
else if ($_GET['software'] == 'laravel_lumen') {
88-
echo json_encode(array(
89-
$_GET['software'] => (($version = loadClass('Php')->getLaravelLumenVersion()) !== false) ? $version : $no
90-
));
91-
}
87+
// else if ($_GET['software'] == 'laravel_lumen') {
88+
// echo json_encode(array(
89+
// $_GET['software'] => (($version = loadClass('Php')->getLaravelLumenVersion()) !== false) ? $version : $no
90+
// ));
91+
// }
9292
else if ($_GET['software'] == 'mds') {
9393
echo json_encode(array(
9494
$_GET['software'] => (($version = loadClass('Php')->getMdsVersion()) !== false) ? $version : $no

.devilbox/www/htdocs/assets/css/custom.css

+7
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,13 @@ nav.navbar {
169169

170170

171171

172+
/* Overwrites for xdebug_info();
173+
-------------------------------------------------- */
174+
a.navbar-brand, a.nav-link, .nav-item.dropdown a {
175+
text-decoration: none !important;
176+
}
177+
178+
172179

173180
/* mail.php;
174181
-------------------------------------------------- */

.devilbox/www/htdocs/credits.php

+8-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<div class="col-md-6">
2121
<h2>Contributors</h2>
22-
<p>The following people have contributed to the <a href="https://github.com/cytopia/devilbox/graphs/contributors">Devilbox</a>.</p>
22+
<p>The following people have contributed to the <a href="https://github.com/devilbox-community/devilbox/graphs/contributors">Devilbox</a>.</p>
2323
<table class="table table-striped ">
2424
<thead class="thead-inverse ">
2525
<tr>
@@ -34,20 +34,25 @@
3434
<td>Project creator</td>
3535
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a href="https://github.com/cytopia">cytopia</a></td>
3636
</tr>
37+
<tr>
38+
<td>Toan Nguyen</td>
39+
<td>Project maintainer</td>
40+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a href="https://github.com/nntoan">nntoan</a></td>
41+
</tr>
3742
<tr>
3843
<td>Maifz</td>
3944
<td>Logos</td>
4045
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a href="https://github.com/Maifz">Maifz</a></td>
4146
</tr>
4247
</tbody>
4348
</table>
44-
<p>If you like to contribute, have a lookt at the <a href="https://github.com/cytopia/devilbox/blob/master/CONTRIBUTING.md">Contributing Guidelines</a>.</p>
49+
<p>If you like to contribute, have a lookt at the <a href="https://github.com/devilbox-community/devilbox/blob/master/CONTRIBUTING.md">Contributing Guidelines</a>.</p>
4550
</div>
4651

4752

4853
<div class="col-md-6">
4954
<h2>Libraries</h2>
50-
<p>The <a href="https://github.com/cytopia/devilbox">Devilbox</a> includes several libraries which are listed below.</p>
55+
<p>The <a href="https://github.com/devilbox-community/devilbox">Devilbox</a> includes several libraries which are listed below.</p>
5156
<table class="table table-striped ">
5257
<thead class="thead-inverse ">
5358
<tr>

.devilbox/www/htdocs/db_memcd.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<th>Size</th>
2929
<th>TTL</th>
3030
<th>Value</th>
31-
</th>
31+
</tr>
3232
</thead>
3333
<tbody>
3434
<?php foreach (loadClass('Memcd')->getKeys() as $data): ?>

.devilbox/www/htdocs/db_mongo.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<th>Name</th>
2828
<th>Size</th>
2929
<th>Empty</th>
30-
</th>
30+
</tr>
3131
</thead>
3232
<tbody>
3333
<?php foreach (loadClass('Mongo')->getDatabases() as $db): ?>

.devilbox/www/htdocs/db_mysql.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<th>Collation</th>
3535
<th>Tables</th>
3636
<th>Size</th>
37-
</th>
37+
</tr>
3838
</thead>
3939
<tbody>
4040
<?php foreach (loadClass('Mysql')->getDatabases() as $name => $keys): ?>

.devilbox/www/htdocs/db_pgsql.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<th>Collation</th>
3535
<th>Tables</th>
3636
<th>Size</th>
37-
</th>
37+
</tr>
3838
</thead>
3939
<tbody>
4040
<?php foreach (loadClass('Pgsql')->getDatabases() as $name => $database): ?>

.devilbox/www/htdocs/index.php

+9-9
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@
336336
<div class="dash-box">
337337
<div class="dash-box-head"><i class="fa fa-info-circle" aria-hidden="true"></i> Available CLI Tools</div>
338338
<div class="dash-box-body">
339-
<p><small>You can also enter the php container via <code style="background-color:#3d3d3d;">./shell.sh</code> and use the following cli tools:</small></p>
339+
<p><small>You can also enter the php container via <code style="background-color:#3d3d3d;">./shell.sh</code> or <code style="background-color:#3d3d3d;">./dvl.sh shell</code> and use the following cli tools:</small></p>
340340
<table class="table table-striped table-hover table-bordered table-sm font-small">
341341
<thead class="thead-inverse">
342342
<tr>
@@ -348,10 +348,10 @@
348348
<th style="width: 50%;">Angular Cli</th>
349349
<td id="app_angular_cli"></td>
350350
</tr>
351-
<tr>
352-
<th>AsgardCMS Installer</th>
353-
<td id="app_asgardcms_installer"></td>
354-
</tr>
351+
<!-- <tr>-->
352+
<!-- <th>AsgardCMS Installer</th>-->
353+
<!-- <td id="app_asgardcms_installer"></td>-->
354+
<!-- </tr>-->
355355
<tr>
356356
<th>Codeception</th>
357357
<td id="app_codeception"></td>
@@ -380,10 +380,10 @@
380380
<th>Laravel Installer</th>
381381
<td id="app_laravel_installer"></td>
382382
</tr>
383-
<tr>
384-
<th>Laravel Lumen</th>
385-
<td id="app_laravel_lumen"></td>
386-
</tr>
383+
<!-- <tr>-->
384+
<!-- <th>Laravel Lumen</th>-->
385+
<!-- <td id="app_laravel_lumen"></td>-->
386+
<!-- </tr>-->
387387
<tr>
388388
<th>Mupdf Tools</th>
389389
<td id="app_mupdf_tools"></td>

.devilbox/www/htdocs/support.php

+23-23
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<br/>
1616
<p>I am currently the sole creator and maintainer of the Devilbox and all of its required projects.<br/>If you find this useful or if it makes your daily programming life easier, consider donating to keep this project alive.</p>
1717
<ul>
18-
<li><a target="_blank" href="https://github.com/sponsors/cytopia"><strong>GitHub sponsorship</strong></a></li>
19-
<li><a target="_blank" href="https://opencollective.com/devilbox"><strong>Open Collective</strong></a></li>
20-
<li><a target="_blank" href="https://www.patreon.com/devilbox"><strong>Patreon</strong></a></li>
18+
<li><a target="_blank" href="https://github.com/sponsors/nntoan"><strong>GitHub sponsorship</strong></a></li>
19+
<li><a target="_blank" href="https://opencollective.com/nntoan"><strong>Open Collective</strong></a></li>
20+
<li><a target="_blank" href="https://www.patreon.com/nntoan"><strong>Patreon</strong></a></li>
2121
</ul>
2222
<br/>
2323

@@ -35,83 +35,83 @@
3535
</thead>
3636
<tbody>
3737
<tr>
38-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/cytopia/devilbox">devilbox</a></td>
38+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/devilbox">devilbox</a></td>
3939
<td>The Devilbox</td>
4040
</tr>
4141
<tr>
42-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-php-fpm-5.2">docker-php-fpm-5.2</a></td>
42+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-php-fpm-5.2">docker-php-fpm-5.2</a></td>
4343
<td>Legacy PHP 5.2 base images (<code>amd64</code> and <code>i386</code>)</td>
4444
</tr>
4545
<tr>
46-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-php-fpm-5.3">docker-php-fpm-5.3</a></td>
46+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-php-fpm-5.3">docker-php-fpm-5.3</a></td>
4747
<td>Legacy PHP 5.3 base images (<code>amd64</code> and <code>arm64</code>)</td>
4848
</tr>
4949
<tr>
50-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-php-fpm-5.4">docker-php-fpm-5.4</a></td>
50+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-php-fpm-5.4">docker-php-fpm-5.4</a></td>
5151
<td>Legacy PHP 5.4 base images (<code>amd64</code> and <code>arm64</code>)</td>
5252
</tr>
5353
<tr>
54-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-php-fpm-5.5">docker-php-fpm-5.5</a></td>
54+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-php-fpm-5.5">docker-php-fpm-5.5</a></td>
5555
<td>Legacy PHP 5.5 base images (<code>amd64</code> and <code>arm64</code>)</td>
5656
</tr>
5757
<tr>
58-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-php-fpm-8.0">docker-php-fpm-8.0</a></td>
58+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-php-fpm-8.0">docker-php-fpm-8.0</a></td>
5959
<td>PHP 8.0 base images (<code>amd64</code> and <code>arm64</code>)</td>
6060
</tr>
6161
<tr>
62-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-php-fpm-8.1">docker-php-fpm-8.1</a></td>
62+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-php-fpm-8.1">docker-php-fpm-8.1</a></td>
6363
<td>PHP 8.1 base images (<code>amd64</code> and <code>arm64</code>)</td>
6464
</tr>
6565
<tr>
66-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-php-fpm-8.2">docker-php-fpm-8.2</a></td>
66+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-php-fpm-8.2">docker-php-fpm-8.2</a></td>
6767
<td>PHP 8.2 base images (<code>amd64</code> and <code>arm64</code>)</td>
6868
</tr>
6969
<tr>
70-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-php-fpm-8.3">docker-php-fpm-8.3</a></td>
70+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-php-fpm-8.3">docker-php-fpm-8.3</a></td>
7171
<td>PHP 8.3 base images (<code>amd64</code> and <code>arm64</code>)</td>
7272
</tr>
7373
<tr>
74-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-php-fpm">docker-php-fpm</a></td>
74+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-php-fpm">docker-php-fpm</a></td>
7575
<td>PHP-FPM Devilbox images (<code>amd64</code> and <code>arm64</code>)</td>
7676
</tr>
7777
<tr>
7878
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-php-fpm-community">docker-php-fpm-community</a></td>
7979
<td>PHP-FPM Community images (<code>amd64</code> and <code>arm64</code>)</td>
8080
</tr>
8181
<tr>
82-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-mysql">docker-mysql</a></td>
82+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-mysql">docker-mysql</a></td>
8383
<td>MySQL, MariaDB and PerconaDB images (<code>amd64</code> and <code>arm64</code>)</td>
8484
</tr>
8585
<tr>
86-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-apache-2.2">docker-apache-2.2</a></td>
86+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-apache-2.2">docker-apache-2.2</a></td>
8787
<td>Apache 2.2 images (<code>amd64</code> and <code>arm64</code>)</td>
8888
</tr>
8989
<tr>
90-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-apache-2.4">docker-apache-2.4</a></td>
90+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-apache-2.4">docker-apache-2.4</a></td>
9191
<td>Apache 2.4 images (<code>amd64</code> and <code>arm64</code>)</td>
9292
</tr>
9393
<tr>
94-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-nginx-stable">docker-nginx-stable</a></td>
94+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-nginx-stable">docker-nginx-stable</a></td>
9595
<td>Nginx stable images (<code>amd64</code> and <code>arm64</code>)</td>
9696
</tr>
9797
<tr>
98-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-nginx-mainline">docker-nginx-mainline</a></td>
98+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-nginx-mainline">docker-nginx-mainline</a></td>
9999
<td>Nginx mainline images (<code>amd64</code> and <code>arm64</code>)</td>
100100
</tr>
101101
<tr>
102-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-haproxy">docker-haproxy</a></td>
102+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-haproxy">docker-haproxy</a></td>
103103
<td>HA Proxy image</td>
104104
</tr>
105105
<tr>
106-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-ngrok">docker-ngrok</a></td>
106+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-ngrok">docker-ngrok</a></td>
107107
<td>Ngrok image (<code>amd64</code> and <code>arm64</code>)</td>
108108
</tr>
109109
<tr>
110-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-varnish">docker-varnish</a></td>
110+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-varnish">docker-varnish</a></td>
111111
<td>Varnish image</td>
112112
</tr>
113113
<tr>
114-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/docker-python-flask">docker-python-flask</a></td>
114+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/docker-python-flask">docker-python-flask</a></td>
115115
<td>Python Flask image</td>
116116
</tr>
117117
</tbody>
@@ -147,7 +147,7 @@
147147
<td>Unified build Makefiles</td>
148148
</tr>
149149
<tr>
150-
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox/github-actions">github-actions</a></td>
150+
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/devilbox-community/github-actions">github-actions</a></td>
151151
<td>Re-usable GitHub Action Workflows</td>
152152
</tr>
153153
<tr>

0 commit comments

Comments
 (0)