Skip to content

Commit 7e7d46c

Browse files
Upgrade to php8.4
1 parent 30eb504 commit 7e7d46c

File tree

7 files changed

+40
-40
lines changed

7 files changed

+40
-40
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"league/route": "^6.0",
2828
"monolog/monolog": "^3.0",
2929
"netresearch/jsonmapper": "^5.0",
30-
"php": "^8.3",
30+
"php": "^8.4",
3131
"phpoffice/phpword": "^1.0",
3232
"ponup/sql-builders": "^1.0",
3333
"reconmap/command-parsers": "^2.0",

docker/api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:bookworm-slim
22

3-
ARG PHP_VERSION=8.3
3+
ARG PHP_VERSION=8.4
44
ARG DEBIAN_FRONTEND=noninteractive
55

66
ARG HOST_UID

docker/api/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ printenv | grep "REDIS_" > /home/reconmapper/crontab.env
44
service cron start
55

66
# 'service php-fpm start' does not pass env variables to process.
7-
/etc/init.d/php8.3-fpm start
7+
/etc/init.d/php8.4-fpm start
88

99
# Hand off to the CMD
1010
exec "$@"

docker/api/nginx/sites-enabled/webapp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ server {
1717

1818
location ~ \.php$ {
1919
include snippets/fastcgi-php.conf;
20-
fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
20+
fastcgi_pass unix:/var/run/php/php8.4-fpm.sock;
2121
}
2222
}
2323

packages/command-parsers-lib/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.3-cli
1+
FROM php:8.4-cli
22

33
RUN apt-get update && apt-get upgrade -y
44
RUN apt-get install -y git libzip-dev

packages/command-parsers-lib/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
## Requirements
2222

23-
* [PHP8.3](https://www.php.net/releases/8.3/en.php)
23+
* [PHP8.4](https://www.php.net/releases/8.4/en.php)
2424
* Composer
2525

2626
## Usage
Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
{
2-
"name": "reconmap/command-parsers",
3-
"description": "Parsers for many security command outputs in the form of a PHP library",
4-
"version": "2.0",
5-
"type": "library",
6-
"license": "LGPL-3.0-or-later",
7-
"authors": [
8-
{
9-
"name": "Santiago Lizardo",
10-
"email": "santiagolizardo@users.noreply.github.com"
2+
"name": "reconmap/command-parsers",
3+
"description": "Parsers for many security command outputs in the form of a PHP library",
4+
"version": "2.0",
5+
"type": "library",
6+
"license": "LGPL-3.0-or-later",
7+
"authors": [
8+
{
9+
"name": "Santiago Lizardo",
10+
"email": "santiagolizardo@users.noreply.github.com"
11+
}
12+
],
13+
"prefer-stable": true,
14+
"require": {
15+
"php": "^8.4",
16+
"league/html-to-markdown": "^5",
17+
"ext-simplexml": "*",
18+
"ext-mbstring": "*"
19+
},
20+
"autoload": {
21+
"psr-4": {
22+
"Reconmap\\CommandOutputParsers\\": "src/"
23+
}
24+
},
25+
"autoload-dev": {
26+
"psr-4": {
27+
"Reconmap\\CommandOutputParsers\\": "tests/"
28+
}
29+
},
30+
"require-dev": {
31+
"phpunit/phpunit": "^11.4.3",
32+
"vimeo/psalm": "dev-master"
33+
},
34+
"scripts": {
35+
"test": "phpunit"
1136
}
12-
],
13-
"prefer-stable": true,
14-
"require": {
15-
"php": "^8.3",
16-
"league/html-to-markdown": "^5",
17-
"ext-simplexml": "*",
18-
"ext-mbstring": "*"
19-
},
20-
"autoload": {
21-
"psr-4": {
22-
"Reconmap\\CommandOutputParsers\\": "src/"
23-
}
24-
},
25-
"autoload-dev": {
26-
"psr-4": {
27-
"Reconmap\\CommandOutputParsers\\": "tests/"
28-
}
29-
},
30-
"require-dev": {
31-
"phpunit/phpunit": "^11.4.3",
32-
"vimeo/psalm": "dev-master"
33-
},
34-
"scripts": {
35-
"test": "phpunit"
36-
}
3737
}

0 commit comments

Comments
 (0)