Skip to content

Commit feea299

Browse files
committed
Install RssFeedBundle
1 parent da72f1f commit feea299

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

composer.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@
3232
"role": "Maintainer"
3333
}
3434
],
35+
"repositories": [
36+
{
37+
"type": "vcs",
38+
"url": "https://github.com/TatevikGr/rss-bundle.git"
39+
}
40+
],
3541
"support": {
3642
"issues": "https://github.com/phpList/core/issues",
3743
"forum": "https://discuss.phplist.org/",
@@ -70,7 +76,8 @@
7076
"symfony/messenger": "^6.4",
7177
"symfony/lock": "^6.4",
7278
"webklex/php-imap": "^6.2",
73-
"ext-imap": "*"
79+
"ext-imap": "*",
80+
"tatevikgr/rss-feed": "dev-main"
7481
},
7582
"require-dev": {
7683
"phpunit/phpunit": "^9.5",
@@ -142,7 +149,8 @@
142149
"Doctrine\\Bundle\\DoctrineBundle\\DoctrineBundle",
143150
"Doctrine\\Bundle\\MigrationsBundle\\DoctrineMigrationsBundle",
144151
"PhpList\\Core\\EmptyStartPageBundle\\EmptyStartPageBundle",
145-
"FOS\\RestBundle\\FOSRestBundle"
152+
"FOS\\RestBundle\\FOSRestBundle",
153+
"TatevikGr\\RssFeedBundle\\RssFeedBundle"
146154
],
147155
"routes": {
148156
"homepage": {
@@ -151,5 +159,10 @@
151159
}
152160
}
153161
}
162+
},
163+
"config": {
164+
"allow-plugins": {
165+
"php-http/discovery": true
166+
}
154167
}
155168
}

config/doctrine.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ doctrine:
1717
naming_strategy: doctrine.orm.naming_strategy.underscore
1818
auto_mapping: false
1919
mappings:
20+
TatevikGrRssBundle:
21+
is_bundle: false
22+
type: attribute
23+
dir: '%kernel.project_dir%/vendor/tatevikgr/rss-feed/src/Entity'
24+
prefix: 'TatevikGr\RssFeedBundle\Entity'
25+
alias: 'RssBundle'
2026
Identity:
2127
is_bundle: false
2228
type: attribute

config/doctrine_migrations.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
doctrine_migrations:
22
migrations_paths:
33
'PhpList\Core\Migrations': '%kernel.project_dir%/src/Migrations'
4+
# 'TatevikGr\RssBundle\RssFeedBundle\Migrations': '%kernel.project_dir%/vendor/tatevikgr/rss-bundle/src/RssFeedBundle/Migrations'
45
all_or_nothing: true
56
organize_migrations: false
67
storage:

config/services/commands.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ services:
1515
PhpList\Core\Domain\Messaging\Command\ProcessBouncesCommand:
1616
arguments:
1717
$protocolProcessors: !tagged_iterator 'phplist.bounce_protocol_processor'
18+
19+
TatevikGr\RssFeedBundle\Command\RssDispatchCommand:
20+
tags: ['console.command']

0 commit comments

Comments
 (0)