├── .gitignore ├── README.md ├── autoload.php ├── bxc.php ├── composer.json ├── composer.lock └── src └── BitrixTool ├── BitrixComponent.php ├── BitrixTool.php ├── ClipboardStream.php ├── Commands ├── ComponentsListCommand.php ├── GenerateComponentCommand.php ├── GenerateIncludeCommand.php ├── IBlockListCommand.php ├── IBlockListTypesCommand.php ├── ShowWebRootCommand.php ├── TemplatesCopyCommand.php └── TemplatesListCommand.php └── FileSystemHelpers.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | vendor 3 | bxtool.todo.txt 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/README.md -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/autoload.php -------------------------------------------------------------------------------- /bxc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/bxc.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/composer.lock -------------------------------------------------------------------------------- /src/BitrixTool/BitrixComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/src/BitrixTool/BitrixComponent.php -------------------------------------------------------------------------------- /src/BitrixTool/BitrixTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/src/BitrixTool/BitrixTool.php -------------------------------------------------------------------------------- /src/BitrixTool/ClipboardStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/src/BitrixTool/ClipboardStream.php -------------------------------------------------------------------------------- /src/BitrixTool/Commands/ComponentsListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/src/BitrixTool/Commands/ComponentsListCommand.php -------------------------------------------------------------------------------- /src/BitrixTool/Commands/GenerateComponentCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/src/BitrixTool/Commands/GenerateComponentCommand.php -------------------------------------------------------------------------------- /src/BitrixTool/Commands/GenerateIncludeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/src/BitrixTool/Commands/GenerateIncludeCommand.php -------------------------------------------------------------------------------- /src/BitrixTool/Commands/IBlockListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/src/BitrixTool/Commands/IBlockListCommand.php -------------------------------------------------------------------------------- /src/BitrixTool/Commands/IBlockListTypesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/src/BitrixTool/Commands/IBlockListTypesCommand.php -------------------------------------------------------------------------------- /src/BitrixTool/Commands/ShowWebRootCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/src/BitrixTool/Commands/ShowWebRootCommand.php -------------------------------------------------------------------------------- /src/BitrixTool/Commands/TemplatesCopyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/src/BitrixTool/Commands/TemplatesCopyCommand.php -------------------------------------------------------------------------------- /src/BitrixTool/Commands/TemplatesListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/src/BitrixTool/Commands/TemplatesListCommand.php -------------------------------------------------------------------------------- /src/BitrixTool/FileSystemHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mediahero/bitrix-console-tool/HEAD/src/BitrixTool/FileSystemHelpers.php --------------------------------------------------------------------------------