Skip to content

Commit c2ad74d

Browse files
authored
Merge pull request #108 from socialblue/develop
Drop php 7.4 support
2 parents 28affe5 + 08f229b commit c2ad74d

11 files changed

+4324
-3785
lines changed

.github/workflows/unit_test.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,16 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
php-versions: [ 7.4, 8.0 ]
16+
php-versions: [ 8.0, 8.1 ]
1717

1818
steps:
1919
- uses: actions/checkout@v2
20-
- uses: php-actions/composer@v4 # or alternative dependency management
20+
- uses: php-actions/composer@v6 # or alternative dependency management
2121
- name: Setup PHP
2222
uses: shivammathur/setup-php@v2
2323
with:
2424
php-version: ${{matrix.php-versions}}
25-
- name: Install dependencies
26-
uses: php-actions/composer@v4
27-
with:
28-
dev: yes
29-
args: --prefer-source
30-
25+
tools: phpunit:9.5
3126
- name: add bootstrap cachedir
3227
run: mkdir /tmp/bootstrap && mkdir /tmp/bootstrap/cache && chmod 777 /tmp/bootstrap/cache
3328
shell: bash

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lts/fermium

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
}
3535
],
3636
"require": {
37-
"php": "^7.0",
37+
"php": "8.*",
3838
"ext-json": "*"
3939
},
4040
"require-dev": {

0 commit comments

Comments
 (0)