Skip to content

Commit be9303f

Browse files
committed
fix(dependencies): Update guanguans/notify version to ^3.2
- Update guanguans/notify dependency from ^3.1 to ^3.2 - This change incorporates new features and bug fixes from the latest version. - Adjusted ignoreErrorsOnExtensions to include documentation reference for CORE_EXTENSIONS.
1 parent fe381d4 commit be9303f

File tree

3 files changed

+11
-52
lines changed

3 files changed

+11
-52
lines changed

composer-dependency-analyser.php

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
__DIR__.'/tests',
2727
__DIR__.'/src/Support/Rectors',
2828
])
29+
/** @see \ShipMonk\ComposerDependencyAnalyser\Analyser::CORE_EXTENSIONS */
2930
->ignoreErrorsOnExtensions(
3031
[
3132
'ext-mbstring',

composer-updater

+4-32
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ declare(strict_types=1);
1313
*/
1414

1515
use Composer\InstalledVersions;
16+
use Illuminate\Support\Str;
1617
use SebastianBergmann\Diff\Differ;
1718
use Symfony\Component\Console\Input\ArgvInput;
1819
use Symfony\Component\Console\Input\InputInterface;
@@ -175,8 +176,8 @@ $status = (new SingleCommandApplication)
175176

176177
foreach ($value as $package => &$dependencyVersion) {
177178
if (
178-
$this->strIs($this->exceptPackages, $package)
179-
|| $this->strIs($this->exceptDependencyVersions, $dependencyVersion)
179+
Str::is($this->exceptPackages, $package)
180+
|| Str::is($this->exceptDependencyVersions, $dependencyVersion)
180181
) {
181182
continue;
182183
}
@@ -205,7 +206,7 @@ $status = (new SingleCommandApplication)
205206
$output = $this
206207
->mustRunCommand("$this->highestComposerBinary outdated --format=json --direct --ansi")
207208
->getOutput(),
208-
strpos($output, '{')
209+
strpos($output, '{'.\PHP_EOL)
209210
),
210211
true
211212
)['installed'],
@@ -282,35 +283,6 @@ $status = (new SingleCommandApplication)
282283
return explode('.', ltrim($version, 'v'));
283284
}
284285

285-
/**
286-
* @noinspection SuspiciousLoopInspection
287-
*/
288-
private function strIs(array|string $pattern, string $value): bool
289-
{
290-
$patterns = (array) $pattern;
291-
292-
if (empty($patterns)) {
293-
return false;
294-
}
295-
296-
foreach ($patterns as $pattern) {
297-
$pattern = (string) $pattern;
298-
299-
if ($pattern === $value) {
300-
return true;
301-
}
302-
303-
$pattern = preg_quote($pattern, '#');
304-
$pattern = str_replace('\*', '.*', $pattern);
305-
306-
if (1 === preg_match('#^'.$pattern.'\z#u', $value)) {
307-
return true;
308-
}
309-
}
310-
311-
return false;
312-
}
313-
314286
private function formatDiff(string $diff): string
315287
{
316288
$lines = explode(

composer.json

+6-20
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,7 @@
8484
],
8585
"require": {
8686
"php": ">=8.0",
87-
"ext-json": "*",
88-
"guanguans/notify": "^3.1",
87+
"guanguans/notify": "^3.2",
8988
"laravel/framework": "^9.52 || ^10.0 || ^11.0 || ^12.0"
9089
},
9190
"require-dev": {
@@ -146,11 +145,7 @@
146145
"autoload-dev": {
147146
"psr-4": {
148147
"Guanguans\\LaravelExceptionNotifyTests\\": "tests"
149-
},
150-
"exclude-from-classmap": [
151-
"tests/Fixtures/Illuminate",
152-
"tests/Fixtures/laravel"
153-
]
148+
}
154149
},
155150
"config": {
156151
"allow-plugins": {
@@ -247,8 +242,8 @@
247242
],
248243
"lint": [
249244
"@putenvs",
250-
"for DIR in .; do find $DIR -maxdepth 1 -type f -name '*.php' -type f ! -name 'xxx.php' -exec $PHP74 -l {} \\; 2>&1 | (! grep -v '^No syntax errors detected'); done",
251-
"for DIR in ./config ./src ./tests; do find $DIR -type f -name '*.php' -type f ! -name 'xxx.php' -exec $PHP74 -l {} \\; 2>&1 | (! grep -v '^No syntax errors detected'); done"
245+
"for DIR in .; do find $DIR -maxdepth 1 -type f -name '*.php' -type f ! -name 'xxx.php' -exec $PHP80 -l {} \\; 2>&1 | (! grep -v '^No syntax errors detected'); done",
246+
"for DIR in ./config ./src ./tests; do find $DIR -type f -name '*.php' -type f ! -name 'xxx.php' -exec $PHP80 -l {} \\; 2>&1 | (! grep -v '^No syntax errors detected'); done"
252247
],
253248
"mark-finish": "printf '\\n!\\n!\\t\\033[0;32m%s\\033[0m\\n!\\n\\n' \"Finished\"",
254249
"mark-separate": "printf '\\n!\\n!\\t\\033[0;33m%s\\033[0m\\n!\\n\\n' \"----------------\"",
@@ -331,17 +326,8 @@
331326
"zh-lint": "zhlint {./,docs/,docs/**/}*-zh_CN.md"
332327
},
333328
"scripts-aliases": {
334-
"pest": [
335-
"test"
336-
],
337-
"pest-coverage": [
338-
"test-coverage"
339-
],
340-
"pest-migrate-configuration": [
341-
"test-migrate-configuration"
342-
],
343-
"pest-update-snapshots": [
344-
"test-update-snapshots"
329+
"lint": [
330+
"php-lint"
345331
]
346332
},
347333
"$schema": "https://getcomposer.org/schema.json"

0 commit comments

Comments
 (0)