File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 72
72
- name : Set Framework version
73
73
run : composer config version "13.x-dev"
74
74
75
+ - name : Set Minimum dependencies for `prefer-lowest`
76
+ uses : nick-fields/retry@v3
77
+ with :
78
+ timeout_minutes : 5
79
+ max_attempts : 5
80
+ command : composer require opis/string:2.0.1 --no-interaction --no-update
81
+ shell : bash
82
+ if : matrix.stability == 'prefer-lowest'
83
+
75
84
- name : Install dependencies
76
85
uses : nick-fields/retry@v3
77
86
with :
@@ -136,6 +145,15 @@ jobs:
136
145
- name : Set Framework version
137
146
run : composer config version "13.x-dev"
138
147
148
+ - name : Set Minimum dependencies for `prefer-lowest`
149
+ uses : nick-fields/retry@v3
150
+ with :
151
+ timeout_minutes : 5
152
+ max_attempts : 5
153
+ command : composer require opis/string:2.0.1 --no-interaction --no-update
154
+ shell : bash
155
+ if : matrix.stability == 'prefer-lowest'
156
+
139
157
- name : Install dependencies
140
158
uses : nick-fields/retry@v3
141
159
with :
Original file line number Diff line number Diff line change 12
12
13
13
class SupportStrTest extends TestCase
14
14
{
15
+ /** {@inheritdoc} */
16
+ #[\Override]
17
+ protected function tearDown (): void
18
+ {
19
+ Str::createRandomStringsNormally ();
20
+ }
21
+
15
22
public function testStringCanBeLimitedByWords (): void
16
23
{
17
24
$ this ->assertSame ('Taylor... ' , Str::words ('Taylor Otwell ' , 1 ));
You can’t perform that action at this time.
0 commit comments