Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions frameworks/PHP/php/apc.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ function defaults($d,$v) {
}

// operation constants
define('OB_HOST_STATS',1);
define('OB_SYS_CACHE',2);
define('OB_USER_CACHE',3);
define('OB_SYS_CACHE_DIR',4);
define('OB_VERSION_CHECK',9);
const OB_HOST_STATS = 1;
const OB_SYS_CACHE = 2;
const OB_USER_CACHE = 3;
const OB_SYS_CACHE_DIR = 4;
const OB_VERSION_CHECK = 9;

// check validity of input variables
$vardom=array(
Expand Down
19 changes: 16 additions & 3 deletions frameworks/PHP/php/deploy/eloquent/composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
{
"require": {
"illuminate/database": "8.16.*",
"illuminate/events": "8.16.*",
"illuminate/container": "8.16.*"
"illuminate/database": "11.*",
"illuminate/events": "11.*",
"illuminate/container": "11.*"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-mbstring":"*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*",
"symfony/polyfill-php83": "*",
"symfony/polyfill-php84": "*"
}
}
3 changes: 2 additions & 1 deletion frameworks/PHP/php/php-eloquent.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -yqq && apt-get install -yqq software-properties-common > /dev/null
RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
RUN apt-get update -yqq > /dev/null && \
apt-get install -yqq nginx git unzip php8.4 php8.4-common php8.4-cli php8.4-fpm php8.4-mysql php8.4-mbstring php8.4-dev > /dev/null
apt-get install -yqq nginx git unzip \
php8.4 php8.4-common php8.4-cli php8.4-fpm php8.4-mysql php8.4-mbstring php8.4-curl > /dev/null

COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer

Expand Down
Loading