Skip to content

Commit 57316af

Browse files
authored
Merge pull request #7 from niden/master
PHP 8.3 upgrade
2 parents 6ae4508 + 15e3952 commit 57316af

File tree

11 files changed

+767
-1314
lines changed

11 files changed

+767
-1314
lines changed

Diff for: .github/workflows/main.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919

2020
env:
2121
# All versions should be declared here
22-
PHALCON_VERSION: 5.3.1
22+
PHALCON_VERSION: 5.6.0
2323

2424
# For tests
2525
LANG: en_US.UTF-8
@@ -49,8 +49,7 @@ jobs:
4949
strategy:
5050
fail-fast: false
5151
matrix:
52-
php: [ '8.0', '8.1', '8.2' ]
53-
# php: [ '7.4', '8.0', '8.1' ]
52+
php: [ '8.0', '8.1', '8.2', '8.3' ]
5453

5554
steps:
5655
- uses: actions/checkout@v3
@@ -98,4 +97,4 @@ jobs:
9897
with:
9998
token: ${{secrets.CODECOV_TOKEN}}
10099
directory: ./tests/_output/
101-
files: coverage-8.0.xml,coverage-8.1.xml,coverage-8.2.xml
100+
files: coverage-8.0.xml,coverage-8.1.xml,coverage-8.2.xml,coverage-8.3.xml

Diff for: codeception.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ paths:
44
# where the modules stored
55
tests: tests
66
log: tests/_output
7+
output: tests/_output
78
# directory for fixture data
89
data: tests/_data
910
# directory for custom modules (helpers)

Diff for: composer.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
],
1010
"license": "MIT",
1111
"require": {
12-
"php": ">=7.4 <9.0",
13-
"psr/simple-cache": "^2.0 || ^3.0"
12+
"php": ">=8.0 <9.0",
13+
"psr/simple-cache": "^3.0"
1414
},
1515
"autoload": {
1616
"psr-4": {
@@ -25,17 +25,17 @@
2525
"sort-packages": true
2626
},
2727
"require-dev": {
28-
"codeception/codeception": "^4.1",
29-
"codeception/module-asserts": "^2.0",
30-
"codeception/module-filesystem": "^2.0",
31-
"codeception/module-memcache": "^2.0",
32-
"codeception/module-redis": "^1.4",
33-
"friendsofphp/php-cs-fixer": "^3.7",
28+
"codeception/codeception": "^5.0",
29+
"codeception/module-asserts": "^3.0",
30+
"codeception/module-filesystem": "^3.0",
31+
"codeception/module-memcache": "^3.0",
32+
"codeception/module-redis": "^3.1",
3433
"pds/skeleton": "^1.0",
35-
"phalcon/ide-stubs": "^5.0",
36-
"phpstan/phpstan": "^1.4",
37-
"squizlabs/php_codesniffer": "^3.6",
38-
"vimeo/psalm": "^4.22",
39-
"vlucas/phpdotenv": "^5.4"
34+
"phalcon/ide-stubs": "^5.6",
35+
"phpstan/phpstan": "^1.10",
36+
"phpunit/phpunit": "^9.6",
37+
"squizlabs/php_codesniffer": "^3.8",
38+
"vimeo/psalm": "^5.19",
39+
"vlucas/phpdotenv": "^5.6"
4040
}
4141
}

0 commit comments

Comments
 (0)