-
Notifications
You must be signed in to change notification settings - Fork 5
Modernize all dependencies for PHP 8.4+ #50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 1 commit
65bbb84
cf4c1de
63764fb
277710d
4e533b4
b8bc7db
99cf1b6
5977294
2ef8da0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,41 +4,42 @@ | |||||
| "type": "project", | ||||||
| "description": "Primary dependencies for XOOPS/XoopsCore", | ||||||
| "require": { | ||||||
| "php": ">7.1", | ||||||
| "php": ">8.2", | ||||||
| "dflydev/apache-mime-types": "1.0.*", | ||||||
| "doctrine/dbal": "^4.2.1", | ||||||
| "embed/embed": "^3.0.0", | ||||||
| "endroid/qr-code": "^6.0.8", | ||||||
| "ext-PDO": "*", | ||||||
| "ext-session": "*", | ||||||
| "ext-pcre": "*", | ||||||
| "ext-json": "*", | ||||||
| "league/container": "~3.0", | ||||||
| "doctrine/dbal": "2.9.*", | ||||||
| "psr/log": "1.1.*", | ||||||
| "patchwork/utf8": "^1.3", | ||||||
| "geekwright/assetic-fork": "^2.0", | ||||||
| "symfony/console": "^4.2", | ||||||
| "ptachoire/cssembed": "1.0.*", | ||||||
| "ext-pcre": "*", | ||||||
| "ext-session": "*", | ||||||
|
Comment on lines
+10
to
+12
|
||||||
| "ezyang/htmlpurifier": "^4.8.0", | ||||||
| "firebase/php-jwt": "^6.10.2", | ||||||
| "geekwright/assetic-fork": "*", | ||||||
|
||||||
| "geekwright/assetic-fork": "*", | |
| "geekwright/assetic-fork": "^1.0", |
mambax7 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
Outdated
Copilot
AI
Jun 8, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using a specific version constraint for 'tedivm/stash' rather than '*', to ensure stability.
| "tedivm/stash": "*", | |
| "tedivm/stash": "^0.15.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Composer package names are normalized to lowercase; using "ext-PDO" is inconsistent with the other ext-* requirements (e.g., ext-json/ext-mbstring) and can be confusing. Consider renaming it to "ext-pdo" for consistency and to match Composer docs.