Skip to content

Commit

Permalink
try use lower php version
Browse files Browse the repository at this point in the history
  • Loading branch information
heqiming committed Jul 29, 2024
1 parent 155af6a commit a46b92e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pint & PHPstan & PHPunit
name: Lint & Test

on:
push:
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.2, 8.3]
php: [8.0, 8.1, 8.2, 8.3]

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ A powerful PHP data desensitization tool with built-in rich desensitization calc

## Environment

- PHP >= 8.2
- PHP >= 8.0
- Composer

## Quick Start
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"orchestra/testbench": "^9.2"
},
"require": {
"php": ">=8.2",
"illuminate/hashing": "^11.15",
"illuminate/support": "^11.15"
"php": ">=8.0",
"illuminate/hashing": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
},
"extra": {
"laravel": {
Expand Down

0 comments on commit a46b92e

Please sign in to comment.