Skip to content

Commit cb291e4

Browse files
authored
Fix GitHub Actions workflow and tweak Composer configuration. (#118)
- Allow `--prefer-lowest` to install version with known vulnerability during development. - Remove PHP 8.5 with Laravel 11 workflow as support will only be available for Laravel 12. Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
1 parent 6e41450 commit cb291e4

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ jobs:
2424
laravel: 11
2525
- php: 8.4
2626
laravel: 12
27-
- php: 8.5
28-
laravel: 11
2927
- php: 8.5
3028
laravel: 12
3129
exclude:

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,13 @@
4343
}
4444
},
4545
"config": {
46-
"sort-packages": true,
4746
"allow-plugins": {
4847
"pestphp/pest-plugin": true
49-
}
48+
},
49+
"audit": {
50+
"block-insecure": false
51+
},
52+
"sort-packages": true
5053
},
5154
"minimum-stability": "dev",
5255
"prefer-stable": true

0 commit comments

Comments
 (0)