1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-04 08:10:07 +01:00

Laravel 9 support (#1181)

* Laravel 9 support

* Try out Laravel 9

* wip

* Revert "Try out Laravel 9"

This reverts commit 44074c2de4.

* Revert dev stability
This commit is contained in:
Dries Vints
2022-01-31 09:51:32 +01:00
committed by GitHub
parent 5e81899934
commit 4da39fc4f8
2 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [5.6, '7.0', 7.1, 7.2, 7.3, 7.4, '8.0', '8.1']
php: [5.6, '7.0', 7.1, 7.2, 7.3, 7.4, '8.0', 8.1]
name: PHP ${{ matrix.php }}

View File

@@ -25,9 +25,9 @@
},
"require": {
"php": "^5.6|^7.0|^8.0",
"illuminate/container": "~5.1|^6.0|^7.0|^8.0",
"illuminate/container": "~5.1|^6.0|^7.0|^8.0|^9.0",
"mnapoli/silly": "^1.0",
"symfony/process": "^3.0|^4.0|^5.0",
"symfony/process": "^3.0|^4.0|^5.0|^6.0",
"tightenco/collect": "^5.3|^6.0|^7.0|^8.0",
"guzzlehttp/guzzle": "^6.0|^7.4"
},