Files
WebAPP/vendor/staabm/side-effects-detector/composer.json
Rhino 2e24a40d68 Stand: SMTP-Test, Admin-Mail-Tab, Notifiable-Fix, Lazy-Quill
- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er)
- Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link
- Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest
- Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen)
- Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-02 07:30:37 +01:00

39 lines
994 B
JSON
Executable File

{
"name": "staabm/side-effects-detector",
"license": "MIT",
"description": "A static analysis tool to detect side effects in PHP code",
"keywords": ["static analysis"],
"autoload": {
"classmap": ["lib/"]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require": {
"php": "^7.4 || ^8.0",
"ext-tokenizer": "*"
},
"require-dev": {
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.6",
"phpunit/phpunit": "^9.6.21",
"symfony/var-dumper": "^5.4.43",
"tomasvotruba/type-coverage": "1.0.0",
"tomasvotruba/unused-public": "1.0.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"qa": ["@test", "@phpstan"],
"phpstan": "phpstan analyze",
"test": "phpunit"
}
}