Skip to content

Commit ed540f2

Browse files
Manualy update recipes
1 parent c8a6b37 commit ed540f2

File tree

99 files changed

+1363
-176
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+1363
-176
lines changed

.github/workflows/qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defaults:
99

1010
jobs:
1111
call-qa:
12-
uses: schranz-php-recipes/symfony-recipes-php/.github/workflows/callable-qa.yml@main
12+
uses: symfony/recipes/.github/workflows/callable-qa.yml@main
1313
with:
1414
contrib: true
1515
find_yaml: -not -wholename 'codeception/codeception/*/tests/*' -not -wholename 'codeception/codeception/*/codeception.yml'
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
6+
7+
return static function (ContainerConfigurator $containerConfigurator): void {
8+
$containerConfigurator->extension('storyblok', [
9+
'space_id' => '%env(int:STORYBLOK_SPACE_ID)%',
10+
'management_token' => '%env(STORYBLOK_MANAGEMENT_TOKEN)%',
11+
'content_token' => '%env(STORYBLOK_CONTENT_TOKEN)%',
12+
]);
13+
};
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
6+
7+
return static function (RoutingConfigurator $routingConfigurator): void {
8+
$routingConfigurator->import('@TorrStoryblokBundle/config/routes.yaml')
9+
->prefix('/storyblok/');
10+
};

21torr/storyblok/3.15/manifest.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"bundles": {
3+
"Torr\\Storyblok\\TorrStoryblokBundle": ["all"]
4+
},
5+
"copy-from-recipe": {
6+
"config/": "%CONFIG_DIR%/"
7+
},
8+
"env": {
9+
"STORYBLOK_SPACE_ID": "",
10+
"STORYBLOK_MANAGEMENT_TOKEN": "",
11+
"STORYBLOK_CONTENT_TOKEN": ""
12+
}
13+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
6+
7+
return static function (ContainerConfigurator $containerConfigurator): void {
8+
if ($containerConfigurator->env() === 'dev') {
9+
$containerConfigurator->extension('hexagonal_maker', [
10+
'application_path' => 'Application',
11+
'domain_path' => 'Domain',
12+
'infrastructure_path' => 'Infrastructure',
13+
]);
14+
}
15+
};
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"bundles": {
3+
"AdrienLbt\\HexagonalMakerBundle\\HexagonalMakerBundle": ["dev"]
4+
},
5+
"composer-scripts": {
6+
"make:hexagonal:autoload": "symfony-cmd"
7+
},
8+
"post-install-output": [
9+
"🎉 Le bundle Hexagonal Maker has been installed."
10+
],
11+
"copy-from-recipe": {
12+
"config/": "%CONFIG_DIR%/"
13+
}
14+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
6+
7+
return static function (ContainerConfigurator $containerConfigurator): void {
8+
$containerConfigurator->extension('cmsig_seal', [
9+
'schemas' => [
10+
'default' => [
11+
'dir' => '%kernel.project_dir%/config/schemas',
12+
'engine' => 'default',
13+
],
14+
],
15+
'engines' => [
16+
'default' => [
17+
'adapter' => '%env(resolve:SEAL_DSN)%',
18+
],
19+
],
20+
]);
21+
if ($containerConfigurator->env() === 'test') {
22+
$containerConfigurator->extension('cmsig_seal', [
23+
'index_name_prefix' => 'test_%env(default::TEST_TOKEN)%',
24+
]);
25+
}
26+
};

cmsig/seal-symfony-bundle/0.8/config/schemas/.gitignore

Whitespace-only changes.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"bundles": {
3+
"CmsIg\\Seal\\Integration\\Symfony\\SealBundle": ["all"]
4+
},
5+
"copy-from-recipe": {
6+
"config/": "%CONFIG_DIR%/"
7+
},
8+
"env": {
9+
"#1": "Install one of the following adapters: https://php-cmsig.github.io/search/getting-started/index.html",
10+
"#2": "SEAL_DSN=\"meilisearch://127.0.0.1:7700\"",
11+
"#3": "SEAL_DSN=\"algolia://ALGOLIA_APPLICATION_ID:ALGOLIA_ADMIN_API_KEY\"",
12+
"#4": "SEAL_DSN=\"elasticsearch://127.0.0.1:9200\"",
13+
"#5": "SEAL_DSN=\"opensearch://127.0.0.1:9200\"",
14+
"#6": "SEAL_DSN=\"redis://127.0.0.1:6379\"",
15+
"#7": "SEAL_DSN=\"solr://127.0.0.1:8983\"",
16+
"#8": "SEAL_DSN=\"typesense://[email protected]:8108\"",
17+
"SEAL_DSN": "loupe://%kernel.project_dir%/var/indexes"
18+
}
19+
}

0 commit comments

Comments
 (0)