We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a79764 commit 969f149Copy full SHA for 969f149
tests/ArchitectureTest.php
@@ -1,5 +1,7 @@
1
<?php
2
3
+use Illuminate\Support\Str;
4
+
5
describe('architecture tests', function () {
6
arch('dev debug calls')
7
->expect('Damms005\LaravelMultipay')
@@ -8,4 +10,8 @@
8
10
arch('php preset')->preset()->php();
9
11
arch('laravel preset')->preset()->laravel()->ignoring('Damms005\LaravelMultipay\LaravelMultipayServiceProvider');
12
arch('security preset')->preset()->security()->ignoring('md5');
-});
13
+})
14
+ ->skip(
15
+ Str::startsWith(Illuminate\Foundation\Application::VERSION, '10.'),
16
+ 'Skipped on Laravel 10'
17
+ );
0 commit comments