3
0

15 Commits

Author SHA1 Message Date
12925cc7d7 Merge branch 'release/0.0.10' 2022-07-20 21:09:52 +01:00
393a704f1c Working on DependencyInjection 2022-07-20 21:09:43 +01:00
398e2903ea Merge tag '0.0.9' into develop
Working on DI 0.0.9
2022-07-20 21:06:17 +01:00
95db65f56d Merge branch 'release/0.0.9' 2022-07-20 21:06:16 +01:00
1ec9b05413 Working on DependencyInjection 2022-07-20 21:05:54 +01:00
6a4ce3bef3 Merge tag '0.0.8' into develop
Working on DI
2022-07-20 21:02:39 +01:00
bf89b962ec Merge branch 'release/0.0.8' 2022-07-20 21:02:33 +01:00
7de30e78ac Working on DependencyInjection 2022-07-20 21:02:17 +01:00
6d65df0b9c Merge tag '0.0.7' into develop
Working on DependencyInjection
2022-07-20 21:01:11 +01:00
5d56d98325 Merge branch 'release/0.0.7' 2022-07-20 21:01:06 +01:00
2f6597a957 Working on DependencyInjection 2022-07-20 21:00:54 +01:00
93bb85f69f Merge tag '0.0.6' into develop
Working on DependencyInjection
2022-07-20 20:54:28 +01:00
218b174d4f Merge branch 'release/0.0.6' 2022-07-20 20:54:19 +01:00
2258fa0c96 Working on DependencyInjection 2022-07-20 20:54:10 +01:00
34b0e7f146 Merge tag '0.0.5' into develop
Working on DependencyInjection
2022-07-20 20:47:30 +01:00
3 changed files with 17 additions and 3 deletions

View File

@@ -1,8 +1,10 @@
PHP = docker compose run php PHP = docker compose run php
composer_install: composer_install:
@$(PHP) composer install @$(PHP) composer install
composer_update:
@$(PHP) composer update
static_analysis: static_analysis:
@$(PHP) vendor/bin/psalm @$(PHP) vendor/bin/psalm

View File

@@ -1,4 +1,14 @@
services: services:
Pcm\SearchBundle\EventSubscriber\SearchableSubscriber: _defaults:
autowire: true
autoconfigure: true
pcm_search.searchable_subscriber:
class: Pcm\SearchBundle\EventSubscriber\SearchableSubscriber
public: true
tags: tags:
- { name: doctrine.event_subscriber } - { name: doctrine.event_subscriber }
pcm_search.search_service:
class: Pcm\SearchBundle\Service\SearchService
public: true

View File

@@ -1,5 +1,7 @@
<?php <?php
declare(strict_types=1);
namespace Pcm\SearchBundle\DependencyInjection; namespace Pcm\SearchBundle\DependencyInjection;
use Symfony\Component\Config\FileLocator; use Symfony\Component\Config\FileLocator;