Skip to content

Commit

Permalink
Feature/php 8.3 (#2)
Browse files Browse the repository at this point in the history
Added PHP 8.3 and removed php versions (5.2-5.5) and apache 2.2
  • Loading branch information
john-ea authored Apr 11, 2024
1 parent 0288645 commit f32bc0e
Show file tree
Hide file tree
Showing 9,531 changed files with 718,505 additions and 825,076 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
24 changes: 12 additions & 12 deletions .devilbox/www/htdocs/_ajax_callback.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
$_GET['software'] => (($version = loadClass('Php')->getAngularCliVersion()) !== false) ? $version : $no
));
}
else if ($_GET['software'] == 'asgardcms_installer') {
echo json_encode(array(
$_GET['software'] => (($version = loadClass('Php')->getAsgardCmsInstallerVersion()) !== false) ? $version : $no
));
}
// else if ($_GET['software'] == 'asgardcms_installer') {
// echo json_encode(array(
// $_GET['software'] => (($version = loadClass('Php')->getAsgardCmsInstallerVersion()) !== false) ? $version : $no
// ));
// }
else if ($_GET['software'] == 'codeception') {
echo json_encode(array(
$_GET['software'] => (($version = loadClass('Php')->getCodeceptionVersion()) !== false) ? $version : $no
Expand All @@ -74,21 +74,21 @@
$_GET['software'] => (($version = loadClass('Php')->getGruntCliVersion()) !== false) ? $version : $no
));
}
else if ($_GET['software'] == 'gulp') {
else if ($_GET['software'] == 'gulp_cli') {
echo json_encode(array(
$_GET['software'] => (($version = loadClass('Php')->getGulpVersion()) !== false) ? $version : $no
$_GET['software'] => (($version = loadClass('Php')->getGulpCliVersion()) !== false) ? $version : $no
));
}
else if ($_GET['software'] == 'laravel_installer') {
echo json_encode(array(
$_GET['software'] => (($version = loadClass('Php')->getLaravelInstallerVersion()) !== false) ? $version : $no
));
}
else if ($_GET['software'] == 'laravel_lumen') {
echo json_encode(array(
$_GET['software'] => (($version = loadClass('Php')->getLaravelLumenVersion()) !== false) ? $version : $no
));
}
// else if ($_GET['software'] == 'laravel_lumen') {
// echo json_encode(array(
// $_GET['software'] => (($version = loadClass('Php')->getLaravelLumenVersion()) !== false) ? $version : $no
// ));
// }
else if ($_GET['software'] == 'mds') {
echo json_encode(array(
$_GET['software'] => (($version = loadClass('Php')->getMdsVersion()) !== false) ? $version : $no
Expand Down
7 changes: 6 additions & 1 deletion .devilbox/www/htdocs/credits.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,18 @@
<tr>
<td>phpPgAdmin</td>
<td>GPL 2.0</td>
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/phppgadmin/phppgadmin">phppgadmin/phppgadmin</a></td>
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/ReimuHakurei/phpPgAdmin">ReimuHakurei/phpPgAdmin</a></td>
</tr>
<tr>
<td>PHPRedMin</td>
<td>BSD 3-Clause License</td>
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/sasanrose/phpredmin">sasanrose/phpredmin</a></td>
</tr>
<tr>
<td>phpCacheAdmin</td>
<td>MIT</td>
<td><i class="fa fa-github-alt" aria-hidden="true"></i> <a target="_blank" href="https://github.com/RobiNN1/phpCacheAdmin">RobiNN1/phpCacheAdmin</a></td>
</tr>
</tbody>
</table>
</div>
Expand Down
2 changes: 1 addition & 1 deletion .devilbox/www/htdocs/db_memcd.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<th>Size</th>
<th>TTL</th>
<th>Value</th>
</th>
</tr>
</thead>
<tbody>
<?php foreach (loadClass('Memcd')->getKeys() as $data): ?>
Expand Down
2 changes: 1 addition & 1 deletion .devilbox/www/htdocs/db_mongo.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<th>Name</th>
<th>Size</th>
<th>Empty</th>
</th>
</tr>
</thead>
<tbody>
<?php foreach (loadClass('Mongo')->getDatabases() as $db): ?>
Expand Down
2 changes: 1 addition & 1 deletion .devilbox/www/htdocs/db_mysql.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<th>Collation</th>
<th>Tables</th>
<th>Size</th>
</th>
</tr>
</thead>
<tbody>
<?php foreach (loadClass('Mysql')->getDatabases() as $name => $keys): ?>
Expand Down
2 changes: 1 addition & 1 deletion .devilbox/www/htdocs/db_pgsql.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<th>Collation</th>
<th>Tables</th>
<th>Size</th>
</th>
</tr>
</thead>
<tbody>
<?php foreach (loadClass('Pgsql')->getDatabases() as $name => $database): ?>
Expand Down
26 changes: 13 additions & 13 deletions .devilbox/www/htdocs/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -348,10 +348,10 @@
<th style="width: 50%;">Angular Cli</th>
<td id="app_angular_cli"></td>
</tr>
<tr>
<th>AsgardCMS Installer</th>
<td id="app_asgardcms_installer"></td>
</tr>
<!-- <tr>-->
<!-- <th>AsgardCMS Installer</th>-->
<!-- <td id="app_asgardcms_installer"></td>-->
<!-- </tr>-->
<tr>
<th>Codeception</th>
<td id="app_codeception"></td>
Expand All @@ -373,17 +373,17 @@
<td id="app_grunt_cli"></td>
</tr>
<tr>
<th>Gulp</th>
<td id="app_gulp"></td>
<th>Gulp Cli</th>
<td id="app_gulp_cli"></td>
</tr>
<tr>
<th>Laravel Installer</th>
<td id="app_laravel_installer"></td>
</tr>
<tr>
<th>Laravel Lumen</th>
<td id="app_laravel_lumen"></td>
</tr>
<!-- <tr>-->
<!-- <th>Laravel Lumen</th>-->
<!-- <td id="app_laravel_lumen"></td>-->
<!-- </tr>-->
<tr>
<th>Mupdf Tools</th>
<td id="app_mupdf_tools"></td>
Expand Down Expand Up @@ -954,15 +954,15 @@ function updateVersions(app) {
xhttp.send();
}
updateVersions('angular_cli');
updateVersions('asgardcms_installer');
// updateVersions('asgardcms_installer');
updateVersions('codeception');
updateVersions('composer');
updateVersions('deployer');
updateVersions('git');
updateVersions('grunt_cli');
updateVersions('gulp');
updateVersions('gulp_cli');
updateVersions('laravel_installer');
updateVersions('laravel_lumen');
// updateVersions('laravel_lumen');
updateVersions('mds');
updateVersions('mupdf_tools');
updateVersions('node');
Expand Down
Loading

0 comments on commit f32bc0e

Please sign in to comment.