mirror of
https://codeberg.org/danielsiepmann/news-reader-php.git
synced 2024-11-22 12:16:09 +01:00
Daniel Siepmann
8efad3e1fd
Basic import of entries from feeds. Also make imported feeds accessible in frontend.
47 lines
1.8 KiB
YAML
47 lines
1.8 KiB
YAML
# This file is the entry point to configure your own services.
|
|
# Files in the packages/ subdirectory configure your dependencies.
|
|
|
|
# Put parameters here that don't need to change on each machine where the app is deployed
|
|
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
|
|
parameters:
|
|
# app.feedFetching.cacheDuration: 3600 # in seconds
|
|
app.feedFetching.cacheDuration: 604800 # in seconds, 1 week
|
|
|
|
services:
|
|
# default configuration for services in *this* file
|
|
_defaults:
|
|
autowire: true # Automatically injects dependencies in your services.
|
|
autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
|
|
|
|
# makes classes in src/ available to be used as services
|
|
# this creates a service per class whose id is the fully-qualified class name
|
|
App\:
|
|
resource: '../src/*'
|
|
exclude: '../src/{DependencyInjection,Entity,Migrations,Tests,Kernel.php}'
|
|
|
|
# controllers are imported separately to make sure services can be injected
|
|
# as action arguments even if you don't extend any base controller class
|
|
App\Controller\:
|
|
resource: '../src/Controller'
|
|
tags: ['controller.service_arguments']
|
|
|
|
App\Service\FeedParserFactory:
|
|
arguments:
|
|
$cacheDuration: '%app.feedFetching.cacheDuration%'
|
|
$cacheLocation: '%kernel.cache_dir%/feedFetching'
|
|
|
|
# Commands
|
|
App\Command\ImportOpmlfileCommand:
|
|
tags:
|
|
- name: 'console.command'
|
|
command: 'app:import:opmlfile'
|
|
|
|
App\Command\ImportFeedEntriesCommand:
|
|
tags:
|
|
- name: 'console.command'
|
|
command: 'app:import:feedentries'
|
|
|
|
# Change existing aliases
|
|
slugger:
|
|
class: App\Service\Slugger
|
|
|