Skip to content

Commit cd2f66d

Browse files
committed
Incompatible with PHP 8.4
1 parent 9b10b69 commit cd2f66d

5 files changed

Lines changed: 12 additions & 13 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ on:
77
jobs:
88
phpunit:
99
name: phpunit
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
1313
php-version:
1414
- "7.3"
15-
- "8.1"
15+
- "8.3"
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v2

MIGRATION.md renamed to CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Migration
1+
# CHANGELOG
22

3-
## v1.x to v2.x
3+
## v2.x
44

55
### New Requirements
66

7-
Requires PHP 7.3+
7+
Requires PHP >=7.3 <8.4, for PHP 8.4+ use v3.0
88

99
### New features
1010

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ test-container-73:
3232
@docker-compose run --rm app73 sh
3333
@docker-compose down
3434

35-
.PHONY: test-container-81
36-
test-container-81:
37-
@docker-compose run --rm app81 sh
35+
.PHONY: test-container-83
36+
test-container-83:
37+
@docker-compose run --rm app83 sh
3838
@docker-compose down

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"sort-packages": true
2222
},
2323
"require": {
24-
"php": ">=7.3"
24+
"php": ">=7.3 <8.4"
2525
},
2626
"require-dev": {
2727
"icanboogie/common": "^2.0",

docker-compose.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
---
2-
version: "3.0"
32
services:
43
app73:
54
build:
65
context: .
76
args:
8-
PHP_VERSION: 7.3
7+
PHP_VERSION: "7.3"
98
environment:
109
PHP_IDE_CONFIG: "serverName=icanboogie-datetime"
1110
volumes:
1211
- .:/app:delegated
1312
- ~/.composer:/root/.composer:delegated
1413
working_dir: /app
15-
app81:
14+
app83:
1615
build:
1716
context: .
1817
args:
19-
PHP_VERSION: 8.1
18+
PHP_VERSION: "8.3"
2019
environment:
2120
PHP_IDE_CONFIG: "serverName=icanboogie-datetime"
2221
volumes:

0 commit comments

Comments
 (0)