Skip to content

Commit 302d11e

Browse files
Merge pull request #163 from AikidoSec/7.2-support
php 7.2
2 parents 343920f + a0a6f97 commit 302d11e

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
runs-on: ${{ matrix.os }}
9393
strategy:
9494
matrix:
95-
php_version: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
95+
php_version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
9696
os: [ ubuntu-20.04, ubuntu-22.04-arm ]
9797
fail-fast: true
9898

@@ -319,7 +319,7 @@ jobs:
319319
needs: [ build_rpm ]
320320
strategy:
321321
matrix:
322-
php_version: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
322+
php_version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
323323
server: ['nginx-php-fpm', 'apache-mod-php', 'php-built-in']
324324
os: ['ubuntu-20.04', 'ubuntu-22.04', 'ubuntu-24.04']
325325
fail-fast: false
@@ -391,7 +391,7 @@ jobs:
391391
strategy:
392392
matrix:
393393
os: ['ubuntu-24.04', 'ubuntu-22.04', 'ubuntu-20.04', 'ubuntu-22.04-arm', 'ubuntu-24.04-arm']
394-
php_version: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
394+
php_version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
395395
server: ['nginx-php-fpm', 'apache-mod-php', 'php-built-in']
396396
fail-fast: false
397397
steps:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ Zen for PHP comes as a single package that needs to be installed on the system t
2929

3030
Prerequisites:
3131
* Ensure you have sudo privileges on your system.
32-
* Check that you have a supported PHP version installed (PHP version >= 7.3 and tested up to 8.4).
32+
* Check that you have a supported PHP version installed (PHP version >= 7.2 and tested up to 8.4).
3333
* Make sure to use the appropriate commands for your system or cloud provider.
3434

3535
### Manual install
3636

3737
#### For Red Hat-based Systems (RHEL, CentOS, Fedora)
3838

3939
```
40-
rpm -Uvh --oldpackage https://github.com/AikidoSec/firewall-php/releases/download/v1.0.111/aikido-php-firewall.x86_64.rpm
40+
rpm -Uvh --oldpackage https://github.com/AikidoSec/firewall-php/releases/download/v1.0.112/aikido-php-firewall.x86_64.rpm
4141
```
4242

4343
#### For Debian-based Systems (Debian, Ubuntu)
4444

4545
```
46-
curl -L -O https://github.com/AikidoSec/firewall-php/releases/download/v1.0.111/aikido-php-firewall.x86_64.deb
46+
curl -L -O https://github.com/AikidoSec/firewall-php/releases/download/v1.0.112/aikido-php-firewall.x86_64.deb
4747
dpkg -i -E ./aikido-php-firewall.x86_64.deb
4848
```
4949

@@ -67,7 +67,7 @@ You can run on Debian 10, by doing this setup before install: [Debian10 setup](.
6767
## Supported libraries and frameworks
6868

6969
### PHP versions
70-
Zen for PHP supports the following PHP versions: 7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4.
70+
Zen for PHP supports the following PHP versions: 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4.
7171

7272
### Web frameworks
7373

docs/aws-elastic-beanstalk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
```
55
commands:
66
aikido-php-firewall:
7-
command: "rpm -Uvh --oldpackage https://github.com/AikidoSec/firewall-php/releases/download/v1.0.111/aikido-php-firewall.x86_64.rpm"
7+
command: "rpm -Uvh --oldpackage https://github.com/AikidoSec/firewall-php/releases/download/v1.0.112/aikido-php-firewall.x86_64.rpm"
88
ignoreErrors: true
99
1010
files:

docs/fly-io.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You can find their values in the Aikido platform.
1515
#!/usr/bin/env bash
1616
cd /tmp
1717
18-
curl -L -O https://github.com/AikidoSec/firewall-php/releases/download/v1.0.111/aikido-php-firewall.x86_64.deb
18+
curl -L -O https://github.com/AikidoSec/firewall-php/releases/download/v1.0.112/aikido-php-firewall.x86_64.deb
1919
dpkg -i -E ./aikido-php-firewall.x86_64.deb
2020
```
2121

docs/laravel-forge.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cd /tmp
1919
2020
# Install commands from the "Manual install" section below, based on your OS
2121
22-
curl -L -O https://github.com/AikidoSec/firewall-php/releases/download/v1.0.111/aikido-php-firewall.x86_64.deb
22+
curl -L -O https://github.com/AikidoSec/firewall-php/releases/download/v1.0.112/aikido-php-firewall.x86_64.deb
2323
dpkg -i -E ./aikido-php-firewall.x86_64.deb
2424
2525
# Restarting the php services in order to load the Aikido PHP Firewall

lib/agent/globals/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package globals
22

33
const (
4-
Version = "1.0.111"
4+
Version = "1.0.112"
55
ConfigUpdatedAtMethod = "GET"
66
ConfigUpdatedAtAPI = "/config"
77
ConfigAPIMethod = "GET"

lib/php-extension/include/php_aikido.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
extern zend_module_entry aikido_module_entry;
44
#define phpext_aikido_ptr &aikido_module_entry
55

6-
#define PHP_AIKIDO_VERSION "1.0.111"
6+
#define PHP_AIKIDO_VERSION "1.0.112"
77

88
#if defined(ZTS) && defined(COMPILE_DL_AIKIDO)
99
ZEND_TSRMLS_CACHE_EXTERN()

lib/request-processor/globals/globals.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ var CloudConfig CloudConfigData
1313
var CloudConfigMutex sync.Mutex
1414

1515
const (
16-
Version = "1.0.111"
16+
Version = "1.0.112"
1717
)

package/rpm/aikido.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: aikido-php-firewall
2-
Version: 1.0.111
2+
Version: 1.0.112
33
Release: 1
44
Summary: Aikido PHP Extension
55
License: GPL

0 commit comments

Comments
 (0)