PHPackages                             dvtoid/bitrix-chrome-console - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Debugging &amp; Profiling](/categories/debugging)
4. /
5. dvtoid/bitrix-chrome-console

ActiveLibrary[Debugging &amp; Profiling](/categories/debugging)

dvtoid/bitrix-chrome-console
============================

Дебаг в консоли Google Chrome для 1С-Битрикс

1.0.0(1y ago)19MITPHPPHP ^8.0

Since Apr 7Pushed 1y ago1 watchersCompare

[ Source](https://github.com/dvtoid/bitrix-chrome-console)[ Packagist](https://packagist.org/packages/dvtoid/bitrix-chrome-console)[ RSS](/packages/dvtoid-bitrix-chrome-console/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

Bitrix Chrome Console
---------------------

[](#bitrix-chrome-console)

Дебаг в консоли Google Chrome для 1С-Битрикс

Используется библиотека [barbushin/php-console](https://github.com/barbushin/php-console)и расширение для Google Chrome [barbushin/php-console-extension](https://github.com/barbushin/php-console-extension)

### Использование

[](#использование)

Установить библиотеку из composer:

```
composer require dvtoid/bitrix-chrome-console
```

Скачать расширение для Google Chrome из репы [barbushin/php-console-extension](https://github.com/barbushin/php-console-extension)

Установить в Chrome в разделе расширения (chrome://extensions/), кнопка "Загрузить распакованное расширение"

### .settings.php

[](#settingsphp)

В .settings.php или .settings\_extra.php добавить секцию настроек:

```
'bitrix_chrome_console' =>
  array(
    'value' =>
      array(
        'enabled' => true,
        'password' => 'PASSWORD',
        'debug' => false,
        'storage' => array(
          'type' => 'file',
          'path' => $_SERVER['DOCUMENT_ROOT'] . '/tmp/bc.data'
        ),
        // optional
        /*
        'terminal' => true, // eval terminal
        'base_path' => '/home/bitrix/www', // strip sources base path
        'encoding' => 'CP1251', // if needed
        'ssl' => true, // all PHPConsole clients will be redirected to HTTPS
        'allowed_ips' => array(
          '127.0.0.1'
        )
        */
      ),
    'readonly' => true,
  )
```

### php.ini

[](#phpini)

В начале php.ini подключить инициализацию консоли

```
require __DIR__ . '/../path/to/vendor/autoload.php';

\BitrixChromeConsole\Console::init();
```

### Вывод в консоль

[](#вывод-в-консоль)

```
use \BitrixChromeConsole\Console;
```

```
Console::log(['some','data']);
```

[![console1](https://camo.githubusercontent.com/ad4325f8382c6a2246d1c05de156ce55529021bf68961776c9ff60535d5d9a96/68747470733a2f2f646576746f69642e72752f696d616765732f6269747269782d6368726f6d652d636f6e736f6c652f636f6e736f6c65312e706e67)](https://camo.githubusercontent.com/ad4325f8382c6a2246d1c05de156ce55529021bf68961776c9ff60535d5d9a96/68747470733a2f2f646576746f69642e72752f696d616765732f6269747269782d6368726f6d652d636f6e736f6c652f636f6e736f6c65312e706e67)

```
Console::log(['log','data'], 'tag');
```

[![console2](https://camo.githubusercontent.com/4c892d235210f098092558936acd3784d60c674f1dcbdae2d243d74f7e561ec8/68747470733a2f2f646576746f69642e72752f696d616765732f6269747269782d6368726f6d652d636f6e736f6c652f636f6e736f6c65322e706e67)](https://camo.githubusercontent.com/4c892d235210f098092558936acd3784d60c674f1dcbdae2d243d74f7e561ec8/68747470733a2f2f646576746f69642e72752f696d616765732f6269747269782d6368726f6d652d636f6e736f6c652f636f6e736f6c65322e706e67)

```
Console::log(['log','data'], 'tag', true);
```

[![console31](https://camo.githubusercontent.com/3d1d185d178910df093a7abfb9880ffef9531bcdd07dc941422fffd2d578c6ee/68747470733a2f2f646576746f69642e72752f696d616765732f6269747269782d6368726f6d652d636f6e736f6c652f636f6e736f6c65332e706e67)](https://camo.githubusercontent.com/3d1d185d178910df093a7abfb9880ffef9531bcdd07dc941422fffd2d578c6ee/68747470733a2f2f646576746f69642e72752f696d616765732f6269747269782d6368726f6d652d636f6e736f6c652f636f6e736f6c65332e706e67)

Или через хелпрер console()

```
console(['log','data'], 'tag', true);
```

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance43

Moderate activity, may be stable

Popularity6

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

453d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/8994367?v=4)[Andrey](/maintainers/dvtoid)[@dvtoid](https://github.com/dvtoid)

### Embed Badge

![Health badge](/badges/dvtoid-bitrix-chrome-console/health.svg)

```
[![Health](https://phpackages.com/badges/dvtoid-bitrix-chrome-console/health.svg)](https://phpackages.com/packages/dvtoid-bitrix-chrome-console)
```

###  Alternatives

[php-console/laravel-service-provider

Laravel service provider to handle PHP errors, dump variables, execute PHP code remotely in Google Chrome

7361.3k1](/packages/php-console-laravel-service-provider)[fjogeleit/prometheus-messenger-middleware

Prometheus Middleware for the Symfony Messenger Component

2255.2k](/packages/fjogeleit-prometheus-messenger-middleware)[spatie/craft-ray

Easily debug CraftCMS projects

1638.6k](/packages/spatie-craft-ray)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
