Skip to content

Commit

Permalink
⬆️ Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Feb 6, 2024
1 parent 1fdc7b6 commit 0cb22bd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.1, 8.2]
php: [8.1, 8.2, 8.3]
dependencies: [lowest, highest]
experimental: [false]
name: 👷 CI PHP-${{ matrix.php }} ${{ matrix.dependencies }} on ${{ matrix.os }}
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
- name: 🍱 Install Composer dependencies
run: |
composer install -q --no-ansi --no-cache --no-interaction --no-scripts --no-progress --prefer-dist
composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist
composer update --${{ matrix.dependencies }} --no-interaction --prefer-dist
- name: ✅ Check code lint
run: composer lint
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ This framework is a Laravel customization for the [sikessem/skeleton](https://pa

## 📋 Requirements

> - **Requires [PHP 8.1+](https://php.net/releases/)** (at least 8.1.19 recommended to avoid potential bugs).
> - **Requires [PHP 8.1+](https://php.net/releases/)** (at least 8.1.27 recommended to avoid potential bugs).
> - **Requires [Composer v2+](https://getcomposer.org/)** to manage PHP dependencies.
## ⚡️ Installation
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
"chat": "https://github.com/orgs/sikessem/discussions"
},
"require": {
"php": "^8.1||^8.2",
"laravel/framework": "^10.32",
"php": "^8.1||^8.2||^8.3",
"laravel/framework": "^10.43",
"sikessem/debugger": "^0.0.0"
},
"require-dev": {
"sikessem/laravel-devtools": "^0.8.0"
"sikessem/laravel-devtools": "^0.9.0"
},
"autoload": {
"psr-4": {
Expand Down
1 change: 1 addition & 0 deletions rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@
$rectorConfig->sets([
LevelSetList::UP_TO_PHP_81,
LevelSetList::UP_TO_PHP_82,
LevelSetList::UP_TO_PHP_83,
]);
};

0 comments on commit 0cb22bd

Please sign in to comment.