Skip to content

Commit 751eff3

Browse files
committed
Require PHP 7.4 as minimum version. Drop 7.3 support
1 parent efa4325 commit 751eff3

File tree

5 files changed

+138
-214
lines changed

5 files changed

+138
-214
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
php-versions: [ '7.3', '7.4', '8.0', '8.1' ]
21+
php-versions: [ '7.4', '8.0', '8.1' ]
2222
db-type: [ 'mysql', 'sqlite' ]
2323

2424
env:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![Static analysis](https://github.com/Part-DB/Part-DB-symfony/workflows/Static%20analysis/badge.svg)
44
[![codecov](https://codecov.io/gh/Part-DB/Part-DB-symfony/branch/master/graph/badge.svg)](https://codecov.io/gh/Part-DB/Part-DB-symfony)
55
![GitHub License](https://img.shields.io/github/license/Part-DB/Part-DB-symfony)
6-
![PHP Version](https://img.shields.io/badge/PHP-%3E%3D%207.3-green)
6+
![PHP Version](https://img.shields.io/badge/PHP-%3E%3D%207.4-green)
77

88
![Docker Pulls](https://img.shields.io/docker/pulls/jbtronics/part-db1)
99
![Docker Build Status](https://github.com/Part-DB/Part-DB-symfony/workflows/Docker%20Image%20Build/badge.svg)
@@ -55,7 +55,7 @@ Part-DB is also used by small companies and universities for managing their inve
5555

5656
## Requirements
5757
* A **web server** (like Apache2 or nginx) that is capable of running [Symfony 5](https://symfony.com/doc/current/reference/requirements.html),
58-
this includes a minimum PHP version of **PHP 7.3**
58+
this includes a minimum PHP version of **PHP 7.4**
5959
* A **MySQL** (at least 5.6.5) /**MariaDB** (at least 10.0.1) database server if you do not want to use SQLite.
6060
* Shell access to your server is highly suggested!
6161
* For building the client side assets **yarn** and **nodejs** is needed.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"type": "project",
33
"license": "AGPL-3.0-or-later",
44
"require": {
5-
"php": "^7.3 || ^8.0",
5+
"php": "^7.4 || ^8.0",
66
"ext-ctype": "*",
77
"ext-gd": "*",
88
"ext-iconv": "*",
@@ -101,7 +101,7 @@
101101
"*": "dist"
102102
},
103103
"platform": {
104-
"php": "7.3.0"
104+
"php": "7.4.0"
105105
},
106106
"sort-packages": true,
107107
"allow-plugins": {

0 commit comments

Comments
 (0)