Skip to content

Commit

Permalink
[1.x] Migrates to Laravel Zero 10 (#71)
Browse files Browse the repository at this point in the history
* Migrates to Laravel Zero 10

* Adds missing extension for tests

* Reverts windows tests

* Reverts windows tests
  • Loading branch information
nunomaduro committed Feb 16, 2023
1 parent b7c18dc commit 1d8011a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['8.0', 8.1, 8.2]
php: [8.1, 8.2]

name: PHP ${{ matrix.php }}

Expand All @@ -28,7 +28,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
extensions: dom, curl, libxml, mbstring, zip, fileinfo
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none
Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
}
],
"require": {
"php": "^8.0",
"phpseclib/phpseclib": "^3.0"
"php": "^8.1.0",
"phpseclib/phpseclib": "^3.0.18"
},
"require-dev": {
"laravel-zero/framework": "^9.0",
"laravel/forge-sdk": "^3.12",
"mockery/mockery": "^1.5",
"nunomaduro/larastan": "^2.0",
"pestphp/pest": "^1.21",
"spatie/once": "^3.0"
"laravel-zero/framework": "^10.0.0",
"laravel/forge-sdk": "^3.13.3",
"mockery/mockery": "^1.5.1",
"nunomaduro/larastan": "^2.4.0",
"pestphp/pest": "^1.22.4",
"spatie/once": "^3.1.0"
},
"autoload": {
"psr-4": {
Expand All @@ -38,7 +38,7 @@
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.2"
"php": "8.1.0"
},
"allow-plugins": {
"pestphp/pest-plugin": true
Expand Down

0 comments on commit 1d8011a

Please sign in to comment.