Skip to content

Commit 4a681f5

Browse files
committed
wip
1 parent ed255e0 commit 4a681f5

File tree

3 files changed

+15
-20
lines changed

3 files changed

+15
-20
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,17 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.0,8.1,8.2,8.3]
17-
laravel: [11.*,10.*,9.*]
16+
php: [8.1,8.2,8.3]
17+
laravel: [11.*,10.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 11.*
2121
testbench: ^9.0
2222
- laravel: 10.*
2323
testbench: 8.*
24-
- laravel: 9.*
25-
testbench: 7.*
2624
exclude:
2725
- laravel: 11.*
2826
php: 8.1
29-
- laravel: 11.*
30-
php: 8.0
31-
- laravel: 10.*
32-
php: 8.0
3327

3428
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3529

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ class PostController extends Controller
9898
## Requirement
9999

100100
The package requires:
101-
- PHP 8.0 or higher
102-
- Laravel 9.x or higher
101+
- PHP 8.1 or higher
102+
- Laravel 10.x or higher
103103

104104

105105
## Installation

composer.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,20 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.0|^8.1|^8.2|^8.3",
20-
"ajthinking/archetype": "^1.1",
21-
"illuminate/contracts": "^9.0|^10.0|^11.0",
22-
"spatie/laravel-package-tools": "^1.9.0"
19+
"php": "^8.1",
20+
"illuminate/contracts": "^10.0|^11.0",
21+
"phpdocumentor/type-resolver": "^1.5",
22+
"spatie/laravel-package-tools": "^1.9.0",
23+
"spatie/php-structure-discoverer": "^2.0"
2324
},
2425
"require-dev": {
25-
"friendsofphp/php-cs-fixer": "^3.8",
26-
"nunomaduro/collision": "^6.0",
27-
"orchestra/testbench": "^7.6|^8.0|^9.0",
26+
"nunomaduro/collision": "^7.10.0|^8.0.1",
27+
"friendsofphp/php-cs-fixer": "^3.0",
2828
"nesbot/carbon": "^2.63",
29-
"pestphp/pest": "^1.22|^2.31",
30-
"pestphp/pest-plugin-laravel": "^1.3|^2.0",
31-
"phpunit/phpunit": "^9.5|^10.0"
29+
"orchestra/testbench": "^8.0|^9.0",
30+
"pestphp/pest": "^2.31",
31+
"pestphp/pest-plugin-laravel": "^2.0",
32+
"phpunit/phpunit": "^10.0"
3233
},
3334
"autoload": {
3435
"psr-4": {

0 commit comments

Comments
 (0)