File tree 7 files changed +40
-40
lines changed
packages/command-parsers-lib
7 files changed +40
-40
lines changed Original file line number Diff line number Diff line change 27
27
"league/route" : " ^6.0" ,
28
28
"monolog/monolog" : " ^3.0" ,
29
29
"netresearch/jsonmapper" : " ^5.0" ,
30
- "php" : " ^8.3 " ,
30
+ "php" : " ^8.4 " ,
31
31
"phpoffice/phpword" : " ^1.0" ,
32
32
"ponup/sql-builders" : " ^1.0" ,
33
33
"reconmap/command-parsers" : " ^2.0" ,
Original file line number Diff line number Diff line change 1
1
FROM debian:bookworm-slim
2
2
3
- ARG PHP_VERSION=8.3
3
+ ARG PHP_VERSION=8.4
4
4
ARG DEBIAN_FRONTEND=noninteractive
5
5
6
6
ARG HOST_UID
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ printenv | grep "REDIS_" > /home/reconmapper/crontab.env
4
4
service cron start
5
5
6
6
# '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
8
8
9
9
# Hand off to the CMD
10
10
exec " $@ "
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ server {
17
17
18
18
location ~ \.php$ {
19
19
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;
21
21
}
22
22
}
23
23
Original file line number Diff line number Diff line change 1
- FROM php:8.3 -cli
1
+ FROM php:8.4 -cli
2
2
3
3
RUN apt-get update && apt-get upgrade -y
4
4
RUN apt-get install -y git libzip-dev
Original file line number Diff line number Diff line change 20
20
21
21
## Requirements
22
22
23
- * [ PHP8.3 ] ( https://www.php.net/releases/8.3 /en.php )
23
+ * [ PHP8.4 ] ( https://www.php.net/releases/8.4 /en.php )
24
24
* Composer
25
25
26
26
## Usage
Original file line number Diff line number Diff line change 1
1
{
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"
11
36
}
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
- }
37
37
}
You can’t perform that action at this time.
0 commit comments