Relax PHP extension version constraints in composer.json.

Updated "ext-libxml" and "ext-dom" dependencies to accept any version. This change ensures broader compatibility across different environments without strictly requiring specific versions for these extensions.
This commit is contained in:
Leonid Nikitin 2024-10-11 01:11:19 +05:00
parent 55b04f0eab
commit 4fdf7fd6f9
Signed by: kor-elf
GPG Key ID: 3C0F720C170F6E1D

View File

@ -22,8 +22,8 @@
"illuminate/support": "^10.0|^11.0",
"guzzlehttp/guzzle": "^7.0.1",
"web-token/jwt-framework": "^3.0",
"ext-libxml": "^2.11.7",
"ext-dom": "^2.11.7"
"ext-libxml": "*",
"ext-dom": "*"
},
"extra": {
"laravel": {