8000 Add support for PHP 8.4 by lyrixx · Pull Request #560 · jolicode/castor · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add support for PHP 8.4 #560

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,10 @@ jobs:
castor:
bin: 'bin/castor'
method: 'bin/castor'
# - php: "8.4"
# castor:
# bin: 'bin/castor'
# method: 'bin/castor'
# allow_failures: true
- php: "8.4"
castor:
bin: 'bin/castor'
method: 'bin/castor'

steps:
- name: Checkout
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Not released yet

### Features

* Add support for PHP 8.4

## 0.19.1 (2024-11-04)

### Fixes
Expand Down
36 changes: 18 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,30 +34,30 @@
},
"require": {
"php": ">=8.1",
"composer/composer": "^2.8.0",
"composer/composer": "^2.8.2",
"jolicode/jolinotif": "^3.0.0",
"jolicode/php-os-helper": "^0.1.0",
"monolog/monolog": "^3.7",
"nikic/php-parser": "^v5.3.1",
"phpstan/phpdoc-parser": "^1.33",
"spatie/ssh": "^1.10.1",
"symfony/cache": "^6.4.12",
"symfony/config": "^6.4.8",
"symfony/console": "^6.4.12",
"symfony/dependency-injection": "^6.4.12",
"spatie/ssh": "^1.12.0",
"symfony/cache": "^6.4.14",
"symfony/config": "^6.4.14",
"symfony/console": "^6.4.14",
"symfony/dependency-injection": "^6.4.13",
"symfony/deprecation-contracts": "^3.5",
"symfony/dotenv": "^6.4.12",
"symfony/error-handler": "^6.4.10",
"symfony/expression-language": "^6.4.11",
"symfony/filesystem": "^6.4.12",
"symfony/finder": "^6.4.11",
"symfony/http-client": "^6.4.12",
"symfony/monolog-bridge": "^6.4.8",
"symfony/process": "^6.4.12",
"symfony/string": "^6.4.12",
"symfony/dotenv": "^6.4.13",
"symfony/error-handler": "^6.4.14",
"symfony/expression-language": "^6.4.13",
"symfony/filesystem": "^6.4.13",
"symfony/finder": "^6.4.13",
"symfony/http-client": "^6.4.14",
"symfony/monolog-bridge": "^6.4.13",
"symfony/process": "^6.4.14",
"symfony/string": "^6.4.13",
"symfony/translation-contracts": "^3.5.0",
"symfony/var-dumper": "^6.4.11",
"symfony/yaml": "^6.4.12"
"symfony/var-dumper": "^6.4.14",
"symfony/yaml": "^6.4.13"
},
"conflict": {
"symfony/config": "6.4.13",
Expand All @@ -74,6 +74,6 @@
},
"require-dev": {
"phpunit/php-code-coverage": "^9.2.32",
"symfony/phpunit-bridge": "^6.4.11"
"symfony/phpunit-bridge": "^6.4.13"
}
}
Loading
0