Skip to content

Commit

Permalink
Merge pull request #7 from niden/master
Browse files Browse the repository at this point in the history
PHP 8.3 upgrade
  • Loading branch information
niden authored Jan 17, 2024
2 parents 6ae4508 + 15e3952 commit 57316af
Show file tree
Hide file tree
Showing 11 changed files with 767 additions and 1,314 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

env:
# All versions should be declared here
PHALCON_VERSION: 5.3.1
PHALCON_VERSION: 5.6.0

# For tests
LANG: en_US.UTF-8
Expand Down Expand Up @@ -49,8 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.0', '8.1', '8.2' ]
# php: [ '7.4', '8.0', '8.1' ]
php: [ '8.0', '8.1', '8.2', '8.3' ]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -98,4 +97,4 @@ jobs:
with:
token: ${{secrets.CODECOV_TOKEN}}
directory: ./tests/_output/
files: coverage-8.0.xml,coverage-8.1.xml,coverage-8.2.xml
files: coverage-8.0.xml,coverage-8.1.xml,coverage-8.2.xml,coverage-8.3.xml
1 change: 1 addition & 0 deletions codeception.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ paths:
# where the modules stored
tests: tests
log: tests/_output
output: tests/_output
# directory for fixture data
data: tests/_data
# directory for custom modules (helpers)
Expand Down
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
],
"license": "MIT",
"require": {
"php": ">=7.4 <9.0",
"psr/simple-cache": "^2.0 || ^3.0"
"php": ">=8.0 <9.0",
"psr/simple-cache": "^3.0"
},
"autoload": {
"psr-4": {
Expand All @@ -25,17 +25,17 @@
"sort-packages": true
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^2.0",
"codeception/module-filesystem": "^2.0",
"codeception/module-memcache": "^2.0",
"codeception/module-redis": "^1.4",
"friendsofphp/php-cs-fixer": "^3.7",
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-filesystem": "^3.0",
"codeception/module-memcache": "^3.0",
"codeception/module-redis": "^3.1",
"pds/skeleton": "^1.0",
"phalcon/ide-stubs": "^5.0",
"phpstan/phpstan": "^1.4",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.22",
"vlucas/phpdotenv": "^5.4"
"phalcon/ide-stubs": "^5.6",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.8",
"vimeo/psalm": "^5.19",
"vlucas/phpdotenv": "^5.6"
}
}
Loading

0 comments on commit 57316af

Please sign in to comment.