Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension('zdd_message', [
'configurator' => null,
$containerConfigurator->extension('hosting', [
'tier' => '%env(HOSTING_TIER)%',
]);
};
14 changes: 14 additions & 0 deletions 21torr/hosting/2.1/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"bundles": {
"Torr\\Hosting\\HostingBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"HOSTING_TIER": "development"
},
"gitignore": [
"/.build-info.json"
]
}
12 changes: 12 additions & 0 deletions 21torr/hosting/3.2/config/packages/hosting.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

declare(strict_types=1);

use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension('hosting', [
'tier' => '%env(HOSTING_TIER)%',
'installation' => '%env(HOSTING_INSTALLATION)%',
]);
};
10 changes: 10 additions & 0 deletions 21torr/hosting/3.2/config/routes/hosting.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

declare(strict_types=1);

use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;

return static function (RoutingConfigurator $routingConfigurator): void {
$routingConfigurator->import('@HostingBundle/config/routes.yaml')
->prefix('/hosting');
};
15 changes: 15 additions & 0 deletions 21torr/hosting/3.2/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"bundles": {
"Torr\\Hosting\\HostingBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"HOSTING_TIER": "development",
"HOSTING_INSTALLATION": ""
},
"gitignore": [
"/.build-info.json"
]
}
13 changes: 13 additions & 0 deletions 21torr/storyblok/3.0/config/packages/storyblok.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

declare(strict_types=1);

use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension('storyblok', [
'space_id' => '%env(int:STORYBLOK_SPACE_ID)%',
'management_token' => '%env(STORYBLOK_MANAGEMENT_TOKEN)%',
'content_token' => '%env(STORYBLOK_CONTENT_TOKEN)%',
]);
};
13 changes: 13 additions & 0 deletions 21torr/storyblok/3.0/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"bundles": {
"Torr\\Storyblok\\TorrStoryblokBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"STORYBLOK_SPACE_ID": "",
"STORYBLOK_MANAGEMENT_TOKEN": "",
"STORYBLOK_CONTENT_TOKEN": ""
}
}
15 changes: 15 additions & 0 deletions 21torr/task-manager/2.0/config/packages/task_manager.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

declare(strict_types=1);

use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension('task_manager', [
'queues' => [
'app_very_urgent',
'app_urgent',
'app',
],
]);
};
8 changes: 8 additions & 0 deletions 21torr/task-manager/2.0/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"bundles": {
"Torr\\TaskManager\\TaskManagerBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension('adlarge_fixtures_documentation', [
'title' => 'Fixtures documentation',
'reloadCommands' => ['php bin/console doctrine:fixtures:load'],
'reloadCommands' => [
'php bin/console doctrine:fixtures:load',
],
]);
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

declare(strict_types=1);

use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension('captcha_bundle', [
'width' => 120,
'height' => 40,
'length' => 6,
'lines' => 8,
'characters' => 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789',
'case_sensitive' => true,
]);
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

declare(strict_types=1);

use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;

return static function (RoutingConfigurator $routingConfigurator): void {
$routingConfigurator->import('@AgilelabFrCaptchaBundle/config/routes.yaml');
};
8 changes: 8 additions & 0 deletions agilelab-fr/captcha-bundle/1.0/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"bundles": {
"AgilelabFr\\CaptchaBundle\\AgilelabFrCaptchaBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@
return static function (RoutingConfigurator $routingConfigurator): void {
$routingConfigurator->add('phone_verification_initiate', '/phone-verification/initiate/{to}')
->controller('AlexGeno\PhoneVerificationBundle\Controller\PhoneVerificationController::initiate')
->methods(['POST']);
->methods([
'POST',
]);

$routingConfigurator->add('phone_verification_complete', '/phone-verification/complete/{to}/{otp}')
->controller('AlexGeno\PhoneVerificationBundle\Controller\PhoneVerificationController::complete')
->methods(['POST']);
->methods([
'POST',
]);
};
53 changes: 53 additions & 0 deletions alms/cycle-bundle/0.1/config/packages/cycle.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?php

declare(strict_types=1);

use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension('cycle', [
'dbal' => [
'databases' => [
'default' => [
'connection' => 'default_connection',
],
],
'connections' => [
'default_connection' => [
'driver' => 'mysql',
'host' => '%env(resolve:DB_HOST)%',
'port' => '%env(int:DB_PORT)%',
'dbname' => '%env(resolve:DB_NAME)%',
'user' => '%env(resolve:DB_USER)%',
'password' => '%env(resolve:DB_PASSWORD)%',
'charset' => 'utf8',
],
],
],
'orm' => [
'schema' => [
'type' => 'attribute',
'dir' => '%kernel.project_dir%/src/Entity',
],
'cache_dir' => '%kernel.cache_dir%/cycle',
'relation' => [
'fk_create' => false,
'index_create' => false,
],
],
'migration' => [
'directory' => '%kernel.project_dir%/migrations',
],
]);
if ($containerConfigurator->env() === 'test') {
$containerConfigurator->extension('cycle', [
'dbal' => [
'connections' => [
'default_connection' => [
'dbname' => 'test_%env(resolve:DB_NAME)%',
],
],
],
]);
}
};
23 changes: 23 additions & 0 deletions alms/cycle-bundle/0.1/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"bundles": {
"Alms\\Bundle\\CycleBundle\\CycleBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/",
"migrations/": "migrations/"
},
"env": {
"DB_DRIVER": "mysql",
"DB_HOST": "localhost",
"DB_PORT": "3306",
"DB_NAME": "app",
"DB_USER": "root",
"DB_PASSWORD": "secret"
},
"post-install-output": [
" * Modify your database config in <fg=green>.env</>"
]
}
Empty file.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension('geosocio_http_serializer', [
'default_format' => 'json',
$containerConfigurator->extension('alteis_hagreed', [
'token' => '%env(HAGREED_TOKEN)%',
]);
};
13 changes: 13 additions & 0 deletions alteis/hagreed-bundle/1.0/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"bundles": {
"Alteis\\HagreedBundle\\AlteisHagreedBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"HAGREED_TOKEN": ""
}
}
12 changes: 10 additions & 2 deletions ambient-link/ability-sdk/1.0/config/packages/ability.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,22 @@
$services = $containerConfigurator->services();

$services->set('AmbientLink\SDK\SmartMonkeyConnection')
->args([service('amnient.link_connection_settings'), '%env(AMBIENT_LINK_USERNAME)%', '%env(AMBIENT_LINK_PASSWORD)%']);
->args([
service('amnient.link_connection_settings'),
'%env(AMBIENT_LINK_USERNAME)%',
'%env(AMBIENT_LINK_PASSWORD)%',
]);

$services->set('amnient.link_connection_settings', 'PhpMqtt\Client\ConnectionSettings');

$services->alias('PhpMqtt\Client\Contracts\MQTTClient', 'PhpMqtt\Client\MQTTClient');

$services->set('PhpMqtt\Client\MQTTClient')
->args(['%env(AMBIENT_LINK_HOST)%', '%env(AMBIENT_LINK_PORT)%', '%env(AMBIENT_LINK_MONKEY_ID)%']);
->args([
'%env(AMBIENT_LINK_HOST)%',
'%env(AMBIENT_LINK_PORT)%',
'%env(AMBIENT_LINK_MONKEY_ID)%',
]);

$services->set('AmbientLink\SDK\Mqtt\MqttAdapter')
->arg('$username', '%env(AMBIENT_LINK_USERNAME)%')
Expand Down
8 changes: 6 additions & 2 deletions andchir/omnipay-bundle/1.0/config/packages/omnipay.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@
'notify_url' => '/omnipay_notify',
'cancel_url' => '/omnipay_cancel',
'data_keys' => [
'paymentId' => ['orderNumber'],
'customerEmail' => ['customerNumber'],
'paymentId' => [
'orderNumber',
],
'customerEmail' => [
'customerNumber',
],
],
'gateways' => null,
]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@

$services->set('anezi_twig.locale_extension', 'Anezi\Locale\Twig\Extension\LocaleExtension')
->private()
->arg('$locales', ['fr', 'en'])
->arg('$locales', [
'fr',
'en',
])
->tag('twig.extension');
};
4 changes: 3 additions & 1 deletion anyx/login-gate-bundle/1.0/config/packages/login_gate.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension('login_gate', [
'storages' => ['session'],
'storages' => [
'session',
],
'options' => [
'max_count_attempts' => 3,
'timeout' => 600,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

declare(strict_types=1);

use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use function Symfony\Component\DependencyInjection\Loader\Configurator\service;

return static function (ContainerConfigurator $containerConfigurator): void {
$services = $containerConfigurator->services();

$services->set('Arad021\Validator\Constraint\EntityNotExistValidator')
->args([
service('doctrine.orm.entity_manager'),
])
->tag('validator.constraint_validator');
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
}
11 changes: 11 additions & 0 deletions artack/svg-inline-bundle/1.0/config/packages/artack_svg_inline.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

declare(strict_types=1);

use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension('svg_inline', [
'path' => '%kernel.project_dir%/assets/svg',
]);
};
8 changes: 8 additions & 0 deletions artack/svg-inline-bundle/1.0/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"bundles": {
"Artack\\SvgInlineBundle\\SvgInlineBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
$containerConfigurator->extension('artprima_prometheus_metrics', [
'namespace' => 'myapp',
'type' => 'apcu',
'ignored_routes' => ['prometheus_bundle_prometheus', '_wdt'],
'ignored_routes' => [
'prometheus_bundle_prometheus',
'_wdt',
],
]);
};
Loading
Loading