-
Notifications
You must be signed in to change notification settings - Fork 31
Feat: message sending-forwarding #374
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: main
Are you sure you want to change the base?
Changes from all commits
a72d2e9
d40dedd
613a196
759d8e0
d94f825
3b9267f
5fc8637
69884a8
077bc63
492e1d0
109b07a
65c0030
7e9bab2
3dcb90a
0c5b4f4
25ef84a
166a66c
e7f9eca
cec0eb1
2b0c256
1643a29
04e84a1
4a9e895
b6e2ee2
ca6dc94
9fea466
2323119
823e006
a140c2b
7f21c58
8342b4a
39712ed
88e25f5
6f81e7b
2adf65c
7adf1f6
0a9b9a4
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 |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| { | ||
| "name": "phplist/core", | ||
| "description": "The core module of phpList, the world's most popular open source newsletter manager", | ||
| "type": "phplist-module", | ||
| "type": "symfony-bundle", | ||
| "keywords": [ | ||
| "phplist", | ||
| "email", | ||
|
|
@@ -46,6 +46,7 @@ | |
| }, | ||
| "require": { | ||
| "php": "^8.1", | ||
| "symfony/framework-bundle": "^6.4", | ||
| "symfony/dependency-injection": "^6.4", | ||
| "symfony/config": "^6.4", | ||
| "symfony/yaml": "^6.4", | ||
|
|
@@ -79,7 +80,13 @@ | |
| "ext-imap": "*", | ||
| "tatevikgr/rss-feed": "dev-main", | ||
| "ext-pdo": "*", | ||
| "ezyang/htmlpurifier": "^4.19" | ||
| "ezyang/htmlpurifier": "^4.19", | ||
| "ext-libxml": "*", | ||
| "ext-gd": "*", | ||
| "ext-curl": "*", | ||
| "ext-fileinfo": "*", | ||
| "setasign/fpdf": "^1.8", | ||
| "phpdocumentor/reflection-docblock": "^5.2" | ||
| }, | ||
| "require-dev": { | ||
| "phpunit/phpunit": "^9.5", | ||
|
|
@@ -92,7 +99,6 @@ | |
| "symfony/test-pack": "^1.1", | ||
| "symfony/process": "^6.4", | ||
| "composer/composer": "^2.7", | ||
| "symfony/framework-bundle": "^6.4", | ||
| "symfony/http-kernel": "^6.4", | ||
| "symfony/http-foundation": "^6.4", | ||
| "symfony/routing": "^6.4", | ||
|
|
@@ -152,8 +158,8 @@ | |
| "Doctrine\\Bundle\\DoctrineBundle\\DoctrineBundle", | ||
| "Doctrine\\Bundle\\MigrationsBundle\\DoctrineMigrationsBundle", | ||
| "PhpList\\Core\\EmptyStartPageBundle\\EmptyStartPageBundle", | ||
| "FOS\\RestBundle\\FOSRestBundle", | ||
| "TatevikGr\\RssFeedBundle\\RssFeedBundle" | ||
| "PhpList\\Core\\EmptyStartPageBundle\\PhpListCoreBundle", | ||
| "FOS\\RestBundle\\FOSRestBundle" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Check if FOSRestBundle or friendsofsymfony/rest-bundle is present in composer.json
echo "=== Searching composer.json ==="
cat composer.json | grep -i "friendsofsymfony\|fosrest"
echo ""
echo "=== Full composer.json (for context) ==="
cat composer.jsonRepository: phpList/core Length of output: 5875 Add FOSRestBundle package to composer.json require section. The bundle is registered in the Symfony configuration but the Composer package is missing. Add 🤖 Prompt for AI Agents |
||
| ], | ||
| "routes": { | ||
| "homepage": { | ||
|
|
||
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.
🧩 Analysis chain
🏁 Script executed:
Repository: phpList/core
Length of output: 217
🏁 Script executed:
Repository: phpList/core
Length of output: 577
Fix incorrect bundle namespace in composer.json line 161.
The
PhpListCoreBundleclass is registered with the wrong fully-qualified name. It's actually in thePhpList\Corenamespace, notPhpList\Core\EmptyStartPageBundle.Change line 161 from:
To:
Incorrect bundle registration will cause Symfony to fail loading the bundle during kernel boot.
🤖 Prompt for AI Agents