3
0

9 Commits

Author SHA1 Message Date
3f57c78d01 Merge branch 'release/0.0.17' 2022-07-29 11:18:35 +01:00
e88da82267 Added loader for doctrine.yaml to bring in MATCH AGAINST method 2022-07-29 11:18:20 +01:00
319334834b Merge tag '0.0.16' into develop
Working on DI 0.0.16
2022-07-20 21:29:45 +01:00
9bad1cb2b9 Merge branch 'release/0.0.16' 2022-07-20 21:29:43 +01:00
df927a8197 Adding doctrine.yaml config 2022-07-20 21:29:33 +01:00
5c98989631 Merge tag '0.0.15' into develop
Working on DI 0.0.15
2022-07-20 21:26:13 +01:00
373087a5d5 Merge branch 'release/0.0.15' 2022-07-20 21:26:11 +01:00
205b29e07c Working on DependencyInjection 2022-07-20 21:26:00 +01:00
e1d5f094de Merge tag '0.0.14' into develop
Working on DI 0.0.14
2022-07-20 21:23:55 +01:00
3 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
doctrine:
orm:
dql:
string_functions:
match: DoctrineExtensions\Query\Mysql\MatchAgainst

View File

@@ -3,6 +3,11 @@ services:
autowire: true
autoconfigure: true
pcm_search.command.index:
class: Pcm\SearchBundle\Command\SearchIndexCommand
tags:
- { name: 'console.command', command: 'pcm:search:reindex' }
pcm_search.searchable_subscriber:
class: Pcm\SearchBundle\EventSubscriber\SearchableSubscriber
public: true

View File

@@ -18,5 +18,6 @@ class PcmSearchExtension extends Extension
new FileLocator(__DIR__.'/../../config')
);
$loader->load('services.yaml');
$loader->load('packages/doctrine.yaml');
}
}