Skip to content

Commit 471d372

Browse files
committed
Use single pipe without spaces in composer.json version constraints
🤖 Generated with [Claude Code](https://claude.com/claude-code)
1 parent 75f78ad commit 471d372

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

examples/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"async-aws/bedrock-runtime": "^1.1",
2929
"codewithkyrian/chromadb-php": "^0.4.0",
3030
"codewithkyrian/transformers": "^0.6.2",
31-
"doctrine/dbal": "^3.3 || ^4.0",
31+
"doctrine/dbal": "^3.3|^4.0",
3232
"google/auth": "^1.47",
3333
"mongodb/mongodb": "^2.1",
3434
"mrmysql/youtube-transcript": "^0.0.5",

src/ai-bundle/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
"symfony/string": "^7.3|^8.0"
3232
},
3333
"require-dev": {
34-
"codewithkyrian/chromadb-php": "^0.2.1 || ^0.3 || ^0.4",
34+
"codewithkyrian/chromadb-php": "^0.2.1|^0.3|^0.4",
3535
"google/auth": "^1.47",
36-
"mongodb/mongodb": "^1.21 || ^2.0",
36+
"mongodb/mongodb": "^1.21|^2.0",
3737
"phpstan/phpstan": "^2.1",
3838
"phpstan/phpstan-strict-rules": "^2.0",
3939
"phpunit/phpunit": "^11.5",

src/chat/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
},
3131
"require-dev": {
3232
"ext-redis": "*",
33-
"doctrine/dbal": "^3.3 || ^4.0",
34-
"mongodb/mongodb": "^1.21 || ^2.0",
33+
"doctrine/dbal": "^3.3|^4.0",
34+
"mongodb/mongodb": "^1.21|^2.0",
3535
"phpstan/phpstan": "^2.0",
3636
"phpstan/phpstan-strict-rules": "^2.0",
3737
"phpunit/phpunit": "^11.5.13",

src/store/composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@
4747
"symfony/uid": "^7.3|^8.0"
4848
},
4949
"require-dev": {
50-
"codewithkyrian/chromadb-php": "^0.2.1 || ^0.3 || ^0.4",
51-
"doctrine/dbal": "^3.3 || ^4.0",
52-
"mongodb/mongodb": "^1.21 || ^2.0",
50+
"codewithkyrian/chromadb-php": "^0.2.1|^0.3|^0.4",
51+
"doctrine/dbal": "^3.3|^4.0",
52+
"mongodb/mongodb": "^1.21|^2.0",
5353
"phpstan/phpstan": "^2.0",
5454
"phpstan/phpstan-strict-rules": "^2.0",
5555
"phpunit/phpunit": "^11.5",
5656
"probots-io/pinecone-php": "^1.0",
57-
"symfony/cache": "^6.4 || ^7.1",
58-
"symfony/console": "^6.4 || ^7.1",
59-
"symfony/dependency-injection": "^6.4 || ^7.1",
60-
"symfony/dom-crawler": "^6.4 || ^7.1"
57+
"symfony/cache": "^6.4|^7.1",
58+
"symfony/console": "^6.4|^7.1",
59+
"symfony/dependency-injection": "^6.4|^7.1",
60+
"symfony/dom-crawler": "^6.4|^7.1"
6161
},
6262
"conflict": {
6363
"mongodb/mongodb": "<1.21"

0 commit comments

Comments
 (0)