Skip to content

Commit

Permalink
Оптимизации
Browse files Browse the repository at this point in the history
  • Loading branch information
ProklUng committed Aug 9, 2021
1 parent 6601523 commit 3bca3e2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 50 deletions.
24 changes: 9 additions & 15 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
],
"license": "MIT",
"repositories": [
{
"type": "git",
"url": "https://github.com/proklung/bitrix.core.symfony"
},
{
"type": "git",
"url": "https://github.com/proklung/core.framework.extension.bundle"
Expand All @@ -33,10 +37,6 @@
"type": "git",
"url": "https://github.com/proklung/framework-tools-bundle"
},
{
"type": "git",
"url": "https://github.com/proklung/bitrix.core.symfony"
},
{
"type": "git",
"url": "https://github.com/proklung/bitrix.tools.pack.bundle"
Expand All @@ -56,27 +56,20 @@
"psr/container": "1.0.*",
"proklung/core-framework-extension-bundle": "^1.6",
"proklung/core-argument-resolvers-bundle": "^1.1",
"proklung/bitrixsymfonyrouterbundle": "^1.3",
"arrilot/bitrix-migrations": "dev-master",
"arrilot/bitrix-models": "dev-master",
"maximaster/tools.twig": "dev-master",
"bitrix-expert/bbc": "^1.0",
"proklung/jedi-light": "^1.0",
"illuminate/support": "^6.0 || ^7.0",
"vlucas/phpdotenv": "3.* || ^4",
"symfony/dotenv": "^5.2",
"symfony/monolog-bundle": "^3.7",
"proklung/jedi-light": "^1.0",
"proklung/bitrix.module.generator": "^1.0",
"proklung/facade-bundle": "^1.0",
"proklung/bitrixoggraphbundle": "^1.0",
"proklung/bitrixstaticpagemakerbundle": "^1.0",
"proklung/symfony-maker-bundle": "^1.0",
"proklung/bitrixsymfonyrouterbundle": "^1.3",
"proklung/collection-extender-bundle": "^1.0",
"proklung/bitrix-custom-properties-bundle": "^1.0",
"proklung/api-exception-bundle": "^1.0",
"proklung/bitrix-webform-bundle": "^1.0",
"proklung/controller-sanitizer-validator": "^1.2",
"proklung/bitrix-blade-bundle": "^1.2",
"proklung/pipeline-symfony": "^1.0",
"proklung/db-command": "^1.0",
"proklung/bitrix-iblock-element-validator-bundle": "^1.0",
Expand All @@ -86,13 +79,14 @@
},
"require-dev": {
"proklung/phpunit-testing-tools": "^1.5",
"proklung/symfony-maker-bundle": "^1.0",
"proklung/bitrix.module.generator": "^1.0",
"symfony/maker-bundle": "^1.33",
"squizlabs/php_codesniffer": "^3",
"symfony/debug": "^4.4 || ^5.0",
"symfony/var-dumper": "^4.4 || ^5.0",
"ergebnis/phpstan-rules": "^0.15.3",
"phpstan/phpstan-strict-rules": "^0.12.7",
"slam/phpstan-extensions": "^5.1",
"symfony/maker-bundle": "^1.33",
"mmucklo/krumo": "^0.6.0",
"icanhazstring/composer-unused": "^0.7.5"
},
Expand Down
6 changes: 0 additions & 6 deletions local/configs/packages/bitrix_og_graph.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions local/configs/packages/symfony_blade.yaml

This file was deleted.

10 changes: 3 additions & 7 deletions local/configs/standalone_bundles.php
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
<?php

return [
Prokl\FrameworkExtensionBundle\FrameworkExtensionBundle::class => ['all' => true],
Prokl\CustomFrameworkExtensionsBundle\CustomFrameworkExtensionsBundle::class => ['all' => true],
Prokl\CustomArgumentResolverBundle\CustomArgumentResolverBundle::class => ['all' => true],
Prokl\BitrixSymfonyRouterBundle\SymfonyRouterBundle::class => ['all' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
Prokl\BitrixIblockElementValidatorBundle\BitrixIblockElementValidatorBundle::class => ['all' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['all' => true],
Prokl\BundleMakerBundle\BundleMakerBundle::class => ['all' => true],
Prokl\BitrixIblockElementValidatorBundle\BitrixIblockElementValidatorBundle::class => ['all' => true],
Prokl\FrameworkExtensionBundle\FrameworkExtensionBundle::class => ['all' => true],
Prokl\StaticPageMakerBundle\StaticPageMakerBundle::class => ['all' => true],
Prokl\BitrixWebformBundle\BitrixWebformBundle::class => ['all' => true],
Prokl\ApiExceptionBundle\M6WebApiExceptionBundle::class => ['all' => true],
Prokl\BitrixOgGraphBundle\BitrixOgGraphBundle::class => ['all' => true],
Prokl\SymfonyBladeBundle\SymfonyBladeBundle::class => ['all' => true],
Prokl\FacadeBundle\FacadeBundle::class => ['all' => true],
Prokl\CollectionExtenderBundle\CollectionExtenderBundle::class => ['all' => true],
Prokl\TwigExtensionsPackBundle\TwigExtensionsPackBundle::class => ['all' => true],
Prokl\BitrixOrdinaryToolsBundle\BitrixOrdinaryToolsBundle::class => ['all' => true],
Prokl\BundleMakerBundle\BundleMakerBundle::class => ['dev' => true],
];
6 changes: 0 additions & 6 deletions local/php_interface/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
use Bitrix\Main\Loader;
use Prokl\ServiceProvider\ServiceProvider;
use Symfony\Component\Security\Csrf\CsrfTokenManager;
use Prokl\CollectionExtenderBundle\Services\Extender;

Loader::includeModule('iblock');

Expand All @@ -20,7 +19,6 @@
// так как автолоад (в нашем случае) регистрируется до ядра,
// Твиг не успевает зарегистрироваться
// необходимо это действие повтроить еще раз:

maximasterRegisterTwigTemplateEngine();

Arrilot\BitrixModels\ServiceProvider::register();
Expand All @@ -35,9 +33,5 @@
'local/configs/services.yaml'
);

// Макросы для коллекций Laravel.
container()->get(Extender::class);

include_once 'events.php';
include_once 'symfony_events.php';

12 changes: 0 additions & 12 deletions local/php_interface/symfony_events.php

This file was deleted.

0 comments on commit 3bca3e2

Please sign in to comment.