Skip to content

Commit f80da9a

Browse files
committedFeb 24, 2025··
composer: use double pipe for logical OR
Single pipe is still supported, but `||` is the new one, see https://getcomposer.org/doc/articles/versions.md#version-range
1 parent bf2c5e7 commit f80da9a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
"require": {
3737
"php": "^8.2",
3838
"ext-json": "*",
39-
"illuminate/contracts": "^11.0|^12.0",
40-
"illuminate/support": "^11.0|^12.0",
39+
"illuminate/contracts": "^11.0 || ^12.0",
40+
"illuminate/support": "^11.0 || ^12.0",
4141
"laragraph/utils": "^2.0.1",
4242
"thecodingmachine/safe": "^3.0",
4343
"webonyx/graphql-php": "^15.0.3"
@@ -47,11 +47,11 @@
4747
"fakerphp/faker": "^1.6",
4848
"friendsofphp/php-cs-fixer": "^3",
4949
"larastan/larastan": "^3",
50-
"laravel/framework": "^11.0|^12.0",
50+
"laravel/framework": "^11.0 || ^12.0",
5151
"mfn/php-cs-fixer-config": "^2",
5252
"mockery/mockery": "^1.5",
5353
"phpstan/phpstan": "^2",
54-
"orchestra/testbench": "^9.0|^10.0",
54+
"orchestra/testbench": "^9.0 || ^10.0",
5555
"phpunit/phpunit": "^10.5.32 || ^11.0",
5656
"thecodingmachine/phpstan-safe-rule": "^1"
5757
},

0 commit comments

Comments
 (0)
Please sign in to comment.