[PR #11362] [MERGED] Refactor: remove redundant PHP_MODULE entries in several scripts #9299

Closed
opened 2026-02-05 08:59:23 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/community-scripts/ProxmoxVE/pull/11362
Author: @MickLesk
Created: 1/30/2026
Status: Merged
Merged: 1/30/2026
Merged by: @CrazyWolf13

Base: mainHead: remove_php_deps


📝 Commits (1)

  • d6439d4 refactor(php): remove redundant PHP_MODULE entries

📊 Changes

42 files changed (+42 additions, -42 deletions)

View changed files

📝 ct/2fauth.sh (+1 -1)
📝 ct/baikal.sh (+1 -1)
📝 ct/bar-assistant.sh (+1 -1)
📝 ct/bookstack.sh (+1 -1)
📝 ct/grocy.sh (+1 -1)
📝 ct/kimai.sh (+1 -1)
📝 ct/linkstack.sh (+1 -1)
📝 ct/paymenter.sh (+1 -1)
📝 ct/pelican-panel.sh (+1 -1)
📝 ct/projectsend.sh (+1 -1)
📝 ct/snipeit.sh (+1 -1)
📝 ct/speedtest-tracker.sh (+1 -1)
📝 install/2fauth-install.sh (+1 -1)
📝 install/baikal-install.sh (+1 -1)
📝 install/bar-assistant-install.sh (+1 -1)
📝 install/bookstack-install.sh (+1 -1)
📝 install/domain-monitor-install.sh (+1 -1)
📝 install/firefly-install.sh (+1 -1)
📝 install/freshrss-install.sh (+1 -1)
📝 install/grocy-install.sh (+1 -1)

...and 22 more files

📄 Description

✍️ Description

  • Add dom and gmp to BASE_MODULES in setup_php()
  • Remove modules already covered by BASE_MODULES (cli,common,bcmath,curl,dom,gd,gmp,intl,mbstring,readline,xml,zip)
  • Remove modules already covered by EXTENDED_MODULES (mysql,sqlite3,pgsql,redis,imagick,bz2,apcu)
  • Remove modules already covered by BUILTIN (ctype,exif,ffi,fileinfo,gettext,iconv,pdo,tokenizer)

Fixes #

Prerequisites (X in brackets)

  • Self-review completed – Code follows project standards.
  • Tested thoroughly – Changes work as expected.
  • No security risks – No hardcoded secrets, unnecessary privilege escalations, or permission issues.

🛠️ Type of Change (X in brackets)

  • 🐞 Bug fix ��� Resolves an issue without breaking functionality.
  • New feature – Adds new, non-breaking functionality.
  • 💥 Breaking change – Alters existing functionality in a way that may require updates.
  • 🆕 New script – A fully functional and tested script or script set.
  • 🌍 Website update – Changes to website-related JSON files or metadata.
  • 🔧 Refactoring / Code Cleanup – Improves readability or maintainability without changing functionality.
  • 📝 Documentation update – Changes to README, AppName.md, CONTRIBUTING.md, or other docs.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/community-scripts/ProxmoxVE/pull/11362 **Author:** [@MickLesk](https://github.com/MickLesk) **Created:** 1/30/2026 **Status:** ✅ Merged **Merged:** 1/30/2026 **Merged by:** [@CrazyWolf13](https://github.com/CrazyWolf13) **Base:** `main` ← **Head:** `remove_php_deps` --- ### 📝 Commits (1) - [`d6439d4`](https://github.com/community-scripts/ProxmoxVE/commit/d6439d40b8d87fb7dde7beb350ba0eff92364aff) refactor(php): remove redundant PHP_MODULE entries ### 📊 Changes **42 files changed** (+42 additions, -42 deletions) <details> <summary>View changed files</summary> 📝 `ct/2fauth.sh` (+1 -1) 📝 `ct/baikal.sh` (+1 -1) 📝 `ct/bar-assistant.sh` (+1 -1) 📝 `ct/bookstack.sh` (+1 -1) 📝 `ct/grocy.sh` (+1 -1) 📝 `ct/kimai.sh` (+1 -1) 📝 `ct/linkstack.sh` (+1 -1) 📝 `ct/paymenter.sh` (+1 -1) 📝 `ct/pelican-panel.sh` (+1 -1) 📝 `ct/projectsend.sh` (+1 -1) 📝 `ct/snipeit.sh` (+1 -1) 📝 `ct/speedtest-tracker.sh` (+1 -1) 📝 `install/2fauth-install.sh` (+1 -1) 📝 `install/baikal-install.sh` (+1 -1) 📝 `install/bar-assistant-install.sh` (+1 -1) 📝 `install/bookstack-install.sh` (+1 -1) 📝 `install/domain-monitor-install.sh` (+1 -1) 📝 `install/firefly-install.sh` (+1 -1) 📝 `install/freshrss-install.sh` (+1 -1) 📝 `install/grocy-install.sh` (+1 -1) _...and 22 more files_ </details> ### 📄 Description <!--🛑 New scripts must be submitted to [ProxmoxVED](https://github.com/community-scripts/ProxmoxVED) for testing. PRs without prior testing will be closed. --> ## ✍️ Description - Add dom and gmp to BASE_MODULES in setup_php() - Remove modules already covered by BASE_MODULES (cli,common,bcmath,curl,dom,gd,gmp,intl,mbstring,readline,xml,zip) - Remove modules already covered by EXTENDED_MODULES (mysql,sqlite3,pgsql,redis,imagick,bz2,apcu) - Remove modules already covered by BUILTIN (ctype,exif,ffi,fileinfo,gettext,iconv,pdo,tokenizer) ## 🔗 Related Issue Fixes # ## ✅ Prerequisites (**X** in brackets) - [x] **Self-review completed** – Code follows project standards. - [x] **Tested thoroughly** – Changes work as expected. - [x] **No security risks** – No hardcoded secrets, unnecessary privilege escalations, or permission issues. --- ## 🛠️ Type of Change (**X** in brackets) - [ ] 🐞 **Bug fix** ��� Resolves an issue without breaking functionality. - [ ] ✨ **New feature** – Adds new, non-breaking functionality. - [ ] 💥 **Breaking change** – Alters existing functionality in a way that may require updates. - [ ] 🆕 **New script** – A fully functional and tested script or script set. - [ ] 🌍 **Website update** – Changes to website-related JSON files or metadata. - [x] 🔧 **Refactoring / Code Cleanup** – Improves readability or maintainability without changing functionality. - [ ] 📝 **Documentation update** – Changes to `README`, `AppName.md`, `CONTRIBUTING.md`, or other docs. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 08:59:23 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ProxmoxVE#9299