Skip to content
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

Run tests on PHP 8.3 #17

Merged
merged 4 commits into from
Nov 24, 2023
Merged
Changes from 1 commit
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
Next Next commit
refact(PHP83): drop php8.1 + Laravel9 + upgrade packages
  • Loading branch information
EdenMl committed Nov 8, 2023
commit 1135425e5ab321a32aea34b194539636e9c155e6
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.31 || ^10.0",
"illuminate/database": "^9.31 || ^10.0"
"php": "^8.2",
"illuminate/contracts": "^10.0",
"illuminate/database": "^10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.7",
"nunomaduro/collision": "^6.0",
"nunomaduro/collision": "^7.10",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^7.0 || ^8.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^2.24",
"pestphp/pest-plugin-laravel": "^2.2",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5",
"soyhuce/next-ide-helper": "^0.12.0",
"tpetry/laravel-postgresql-enhanced": "^0.26.0"
"phpunit/phpunit": "^10.4",
"soyhuce/next-ide-helper": "^0.16.0",
"tpetry/laravel-postgresql-enhanced": "^0.33.0"
},
"suggest": {
"tpetry/laravel-postgresql-enhanced": "Specific PostgreSQL extensions for Eloquent"
Expand Down