8000 Merge pull request #26 from milwad-dev/upgrade · milwad-dev/laravel-attributes@c926a3b · GitHub
[go: up one dir, main page]

Skip to content

Commit c926a3b

Browse files
authored
Merge pull request #26 from milwad-dev/upgrade
[1.x] Laravel 12.x & PHP 8.4
2 parents 63cdba3 + e76875e commit c926a3b

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

.github/workflows/run-tests.yml

+18-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
php: [8.0, 8.1, 8.2, 8.3]
12-
laravel: [9.*, 10.*, 11.*]
11+
php: [8.0, 8.1, 8.2, 8.3, 8.4]
12+
laravel: [9.*, 10.*, 11.*, 12.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
include:
15+
- laravel: 12.*
16+
testbench: 10.*
17+
pest-plugin-laravel: 3.1.0
18+
1519
- laravel: 11.*
1620
testbench: 9.*
1721
pest-plugin-laravel: 2.3.0
@@ -25,15 +29,27 @@ jobs:
2529
pest-plugin-laravel: 1.4.0
2630

2731
exclude:
32+
- laravel: 12.*
33+
php: 8.1
34+
35+
- laravel: 12.*
36+
php: 8.0
37+
2838
- laravel: 11.*
2939
php: 8.1
3040

3141
- laravel: 11.*
3242
php: 8.0
3343

44+
- laravel: 10.*
45+
php: 8.4
46+
3447
- laravel: 10.*
3548
php: 8.0
3649

50+
- laravel: 9.*
51+
php: 8.4
52+
3753
- laravel: 9.*
3854
php: 8.3
3955

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ You don't have any stress for attributes! You can create attributes for any mode
2020
| Attributes | L9 | L10 |
2121
|------------|--------------------|--------------------|
2222
| 1.0 | :white_check_mark: | :white_check_mark: |
23+
| 1.1 | :white_check_mark: | :white_check_mark: |
2324

2425
# Installation
2526
***

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414
"license": "MIT",
1515
"authors": [
1616
{
17-
"name": "milwad khosravi",
17+
"name": "Milwad Khosravi",
1818
"email": "milwad.dev@gmail.com",
1919
"homepage": "https://github.com/milwad-dev",
20-
"role": "Developer"
20+
"role": "Author"
2121
}
2222
],
2323
"require": {
2424
"php": "^8.0",
25-
"laravel/framework": "^9.0|^10.0|^11.0"
25+
"laravel/framework": "^9.0|^10.0|^11.0|^12.0"
2626
},
2727
"require-dev": {
28-
"pestphp/pest-plugin-laravel": "^1.4.0|^2.0.0",
29-
"orchestra/testbench": "^7.0|^8.0|^9.0"
28+
"pestphp/pest-plugin-laravel": "^1.4.0|^2.0.0|^3.1.0",
29+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0"
3030
},
3131
"autoload": {
3232
"psr-4": {

0 commit comments

Comments
 (0)
0