Skip to content

Commit fbaa5dc

Browse files
authored
Merge pull request #6 from archtechx/l10-support
Add L10 support
2 parents 46ba3c0 + 45ba8a6 commit fbaa5dc

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
laravel: [8, 9]
14+
laravel: [8, 9, 10]
1515

1616
steps:
1717
- uses: actions/checkout@v2

composer.json

+14-9
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@
2121
}
2222
},
2323
"require": {
24-
"php": "^8.0",
25-
"illuminate/support": "^8.24|^9.0",
26-
"archtechx/laravel-seo": "^0.3.2",
24+
"php": "^8.1",
25+
"illuminate/support": "^8.24|^9.0|^10.0",
26+
"archtechx/laravel-seo": "^0.6",
2727
"ryangjchandler/orbit": "*",
28-
"illuminate/routing": "^8.53|^9.0",
29-
"illuminate/database": "^8.53|^9.0"
28+
"illuminate/routing": "^8.53|^9.0|^10.0",
29+
"illuminate/database": "^8.53|^9.0|^10.0"
3030
},
3131
"require-dev": {
32-
"orchestra/testbench": "^6.9|^7.0",
33-
"pestphp/pest": "^1.2",
34-
"pestphp/pest-plugin-laravel": "^1.0"
32+
"orchestra/testbench": "^6.9|^7.0|^8.0",
33+
"pestphp/pest": "^1.2|^2.0",
34+
"pestphp/pest-plugin-laravel": "^1.0|^2.0"
3535
},
3636
"extra": {
3737
"laravel": {
@@ -41,5 +41,10 @@
4141
}
4242
},
4343
"minimum-stability": "dev",
44-
"prefer-stable": true
44+
"prefer-stable": true,
45+
"config": {
46+
"allow-plugins": {
47+
"pestphp/pest-plugin": true
48+
}
49+
}
4550
}

0 commit comments

Comments
 (0)