Skip to content

Commit

Permalink
added support for laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
rockblings committed Mar 17, 2024
1 parent 8487e44 commit 9a96e47
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 16 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest]
php: [8.2]
laravel: [10.*]
stability: [prefer-lowest, prefer-stable]
laravel: [11.*, 10.*]
stability: [prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
carbon: ^3.0
- laravel: 10.*
testbench: 8.*
carbon: ^2.63
Expand Down
29 changes: 16 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
"keywords": [
"CreativeCrafts",
"laravel",
"laravel-secure-random-number-generator"
"laravel-secure-random-number-generator",
"generate random number",
"secure random number",
"unique random number"
],
"homepage": "https://github.com/creativecrafts/laravel-secure-random-number-generator",
"license": "MIT",
Expand All @@ -17,20 +20,20 @@
],
"require": {
"php": "^8.2",
"spatie/laravel-package-tools": "^1.15.0",
"illuminate/contracts": "^10.0"
"spatie/laravel-package-tools": "^1.16",
"illuminate/contracts": "^11.0|^10.0"
},
"require-dev": {
"laravel/pint": "^1.10.2",
"nunomaduro/collision": "^7",
"nunomaduro/larastan": "^2.6.3",
"orchestra/testbench": "^8.5.8",
"pestphp/pest": "^2.8",
"pestphp/pest-plugin-arch": "^2.2.1",
"pestphp/pest-plugin-laravel": "^2.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"phpstan/phpstan-phpunit": "^1.3.13"
"laravel/pint": "^1.14",
"nunomaduro/collision": "^8.1|^7.0",
"larastan/larastan": "^2.9",
"orchestra/testbench": "^9.0|^8.5",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-arch": "^2.7",
"pestphp/pest-plugin-laravel": "^2.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 9a96e47

Please sign in to comment.