feat!: upgrade min. php version to 8.4 (#86)

* feat: upgrade min php to 7.4, upgrade packages

* chore: update ci/cd, docs, supporting config to php 8.4

* chore: update rest of the docs, supporting config to php 8.4
This commit is contained in:
2026-02-01 10:20:40 +02:00
committed by GitHub
parent 3d3448dcf0
commit 47564c5cd6
21 changed files with 348 additions and 356 deletions

View File

@@ -28,7 +28,7 @@ Plugins extend the GDPR processor's functionality without modifying core code. U
### When to Use Plugins vs. Configuration
| Scenario | Use Plugin | Use Configuration |
|----------|-----------|-------------------|
| -------- | --------- | ----------------- |
| Add regex patterns | ✅ (via `getPatterns()`) | ✅ (via constructor) |
| Custom transformation logic | ✅ | ❌ |
| Conditional processing | ✅ | ❌ |
@@ -126,7 +126,7 @@ interface MaskingPluginInterface
### Method Reference
| Method | Purpose | When Called |
|--------|---------|-------------|
| ------ | ------- | ----------- |
| `getName()` | Unique identifier for debugging | On registration |
| `preProcessContext()` | Modify context before masking | Before core masking |
| `preProcessMessage()` | Modify message before masking | Before core masking |
@@ -266,7 +266,7 @@ class LowPriorityPlugin extends AbstractMaskingPlugin
### Recommended Priority Ranges
| Range | Use Case | Example |
|-------|----------|---------|
| ----- | -------- | ------- |
| 1-50 | Security/validation | Input sanitization |
| 50-100 | Standard processing | Pattern masking |
| 100-150 | Business logic | Domain-specific rules |