├── .github └── workflows │ ├── browser-tests.yaml │ ├── ci.yaml │ ├── cross-merge.yaml │ ├── pr-assign.yaml │ ├── pr-check.yaml │ └── release.yaml ├── .gitignore ├── .php_cs ├── COPYRIGHT ├── LICENSE ├── LICENSE-bul ├── README.md ├── composer.json ├── phpunit.xml └── src ├── bundle ├── Command │ └── SystemInfoDumpCommand.php ├── Controller │ └── SystemInfoController.php ├── DependencyInjection │ ├── Compiler │ │ ├── OutputFormatPass.php │ │ ├── SystemInfoCollectorPass.php │ │ └── SystemInfoTabGroupPass.php │ ├── Configuration.php │ └── EzSystemsEzSupportToolsExtension.php ├── EventSubscriber │ └── AddXPoweredByHeader.php ├── EzSystemsEzSupportToolsBundle.php ├── Resources │ ├── config │ │ ├── default_settings.yaml │ │ ├── events.yaml │ │ ├── routing.yaml │ │ ├── service_aliases.yaml │ │ ├── services.yaml │ │ ├── systeminfo.yaml │ │ └── view.yaml │ ├── translations │ │ ├── dashboard.en.xliff │ │ ├── menu.en.xliff │ │ ├── messages.en.xliff │ │ └── systeminfo.en.xliff │ └── views │ │ └── themes │ │ └── admin │ │ ├── system_info │ │ ├── composer.html.twig │ │ ├── hardware.html.twig │ │ ├── info.html.twig │ │ ├── invalid.html.twig │ │ ├── my_ibexa.html.twig │ │ ├── php.html.twig │ │ ├── repository.html.twig │ │ └── symfony_kernel.html.twig │ │ └── ui │ │ ├── dashboard │ │ └── block │ │ │ └── ez.html.twig │ │ └── tab │ │ └── system_info.html.twig ├── SystemInfo │ ├── Collector │ │ ├── ConfigurationSymfonyKernelSystemInfoCollector.php │ │ ├── EzcHardwareSystemInfoCollector.php │ │ ├── EzcPhpSystemInfoCollector.php │ │ ├── IbexaSystemInfoCollector.php │ │ ├── JsonComposerLockSystemInfoCollector.php │ │ ├── RepositorySystemInfoCollector.php │ │ └── SystemInfoCollector.php │ ├── Exception │ │ ├── ComposerFileValidationException.php │ │ ├── ComposerJsonFileNotFoundException.php │ │ ├── ComposerLockFileNotFoundException.php │ │ ├── MetricsNotFoundException.php │ │ └── SystemInfoException.php │ ├── EzcSystemInfoWrapper.php │ ├── OutputFormat.php │ ├── OutputFormat │ │ └── JsonOutputFormat.php │ ├── OutputFormatRegistry.php │ ├── Registry │ │ └── IdentifierBased.php │ ├── SystemInfoCollectorRegistry.php │ └── Value │ │ ├── ComposerPackage.php │ │ ├── ComposerSystemInfo.php │ │ ├── HardwareSystemInfo.php │ │ ├── IbexaSystemInfo.php │ │ ├── InvalidSystemInfo.php │ │ ├── PhpSystemInfo.php │ │ ├── RepositoryMetrics.php │ │ ├── RepositorySystemInfo.php │ │ ├── SymfonyKernelSystemInfo.php │ │ └── SystemInfo.php ├── Tests │ ├── DependencyInjection │ │ ├── Compiler │ │ │ └── SystemInfoTabGroupPassTest.php │ │ └── EzSystemsEzSupportToolsExtensionTest.php │ ├── SystemInfo │ │ ├── Collector │ │ │ ├── ConfigurationSymfonyKernelSystemInfoCollectorTest.php │ │ │ ├── EzcHardwareSystemInfoCollectorTest.php │ │ │ ├── EzcPhpSystemInfoCollectorTest.php │ │ │ ├── IbexaSystemInfoCollectorTest.php │ │ │ ├── JsonComposerLockSystemInfoCollectorTest.php │ │ │ ├── RepositorySystemInfoCollectorTest.php │ │ │ └── _fixtures │ │ │ │ ├── composer.json │ │ │ │ ├── composer.lock │ │ │ │ ├── corrupted_composer.json │ │ │ │ └── corrupted_composer.lock │ │ └── Registry │ │ │ └── IdentifierBasedTest.php │ ├── View │ │ ├── Matcher │ │ │ └── SystemInfo │ │ │ │ └── IdentitifierTest.php │ │ └── SystemInfoViewBuilderTest.php │ └── bootstrap.php └── View │ ├── Matcher │ └── SystemInfo │ │ └── Identifier.php │ ├── SystemInfoView.php │ └── SystemInfoViewBuilder.php └── lib ├── Component └── Dashboard │ └── EzInfoTwigComponent.php ├── EventListener ├── ConfigureMainMenuListener.php └── SystemInfoTabGroupListener.php ├── Storage ├── AggregateMetricsProvider.php ├── Metrics.php ├── Metrics │ ├── ContentTypesCountMetrics.php │ ├── DraftsCountMetrics.php │ ├── PublishedContentObjectsCountMetrics.php │ ├── RepositoryConnectionAwareMetrics.php │ ├── UsersCountMetrics.php │ └── VersionsCountMetrics.php └── MetricsProvider.php ├── Tab └── SystemInfo │ ├── SystemInfoTab.php │ └── TabFactory.php ├── Tests ├── EventListener │ └── SystemInfoTabGroupListenerTest.php └── VersionStability │ └── VersionStabilityCheckerTest.php ├── Value └── Stability.php └── VersionStability ├── ComposerVersionStabilityChecker.php └── VersionStabilityChecker.php /.github/workflows/browser-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/.github/workflows/browser-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/cross-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/.github/workflows/cross-merge.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-assign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/.github/workflows/pr-assign.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/.github/workflows/pr-check.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | .php_cs.cache 4 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/.php_cs -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-bul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/LICENSE-bul -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/bundle/Command/SystemInfoDumpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Command/SystemInfoDumpCommand.php -------------------------------------------------------------------------------- /src/bundle/Controller/SystemInfoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Controller/SystemInfoController.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Compiler/OutputFormatPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/DependencyInjection/Compiler/OutputFormatPass.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Compiler/SystemInfoCollectorPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/DependencyInjection/Compiler/SystemInfoCollectorPass.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Compiler/SystemInfoTabGroupPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/DependencyInjection/Compiler/SystemInfoTabGroupPass.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/EzSystemsEzSupportToolsExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/DependencyInjection/EzSystemsEzSupportToolsExtension.php -------------------------------------------------------------------------------- /src/bundle/EventSubscriber/AddXPoweredByHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/EventSubscriber/AddXPoweredByHeader.php -------------------------------------------------------------------------------- /src/bundle/EzSystemsEzSupportToolsBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/EzSystemsEzSupportToolsBundle.php -------------------------------------------------------------------------------- /src/bundle/Resources/config/default_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/config/default_settings.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/config/events.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/config/routing.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/service_aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/config/service_aliases.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/config/services.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/systeminfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/config/systeminfo.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/view.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/config/view.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/translations/dashboard.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/translations/dashboard.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/menu.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/translations/menu.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/messages.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/translations/messages.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/translations/systeminfo.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/translations/systeminfo.en.xliff -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/admin/system_info/composer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/views/themes/admin/system_info/composer.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/admin/system_info/hardware.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/views/themes/admin/system_info/hardware.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/admin/system_info/info.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/views/themes/admin/system_info/info.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/admin/system_info/invalid.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/views/themes/admin/system_info/invalid.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/admin/system_info/my_ibexa.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/views/themes/admin/system_info/my_ibexa.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/admin/system_info/php.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/views/themes/admin/system_info/php.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/admin/system_info/repository.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/views/themes/admin/system_info/repository.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/admin/system_info/symfony_kernel.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/views/themes/admin/system_info/symfony_kernel.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/admin/ui/dashboard/block/ez.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/views/themes/admin/ui/dashboard/block/ez.html.twig -------------------------------------------------------------------------------- /src/bundle/Resources/views/themes/admin/ui/tab/system_info.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Resources/views/themes/admin/ui/tab/system_info.html.twig -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Collector/ConfigurationSymfonyKernelSystemInfoCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Collector/ConfigurationSymfonyKernelSystemInfoCollector.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Collector/EzcHardwareSystemInfoCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Collector/EzcHardwareSystemInfoCollector.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Collector/EzcPhpSystemInfoCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Collector/EzcPhpSystemInfoCollector.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Collector/IbexaSystemInfoCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Collector/IbexaSystemInfoCollector.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Collector/JsonComposerLockSystemInfoCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Collector/JsonComposerLockSystemInfoCollector.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Collector/RepositorySystemInfoCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Collector/RepositorySystemInfoCollector.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Collector/SystemInfoCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Collector/SystemInfoCollector.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Exception/ComposerFileValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Exception/ComposerFileValidationException.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Exception/ComposerJsonFileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Exception/ComposerJsonFileNotFoundException.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Exception/ComposerLockFileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Exception/ComposerLockFileNotFoundException.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Exception/MetricsNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Exception/MetricsNotFoundException.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Exception/SystemInfoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Exception/SystemInfoException.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/EzcSystemInfoWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/EzcSystemInfoWrapper.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/OutputFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/OutputFormat.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/OutputFormat/JsonOutputFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/OutputFormat/JsonOutputFormat.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/OutputFormatRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/OutputFormatRegistry.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Registry/IdentifierBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Registry/IdentifierBased.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/SystemInfoCollectorRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/SystemInfoCollectorRegistry.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Value/ComposerPackage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Value/ComposerPackage.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Value/ComposerSystemInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Value/ComposerSystemInfo.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Value/HardwareSystemInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Value/HardwareSystemInfo.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Value/IbexaSystemInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Value/IbexaSystemInfo.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Value/InvalidSystemInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Value/InvalidSystemInfo.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Value/PhpSystemInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Value/PhpSystemInfo.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Value/RepositoryMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Value/RepositoryMetrics.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Value/RepositorySystemInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Value/RepositorySystemInfo.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Value/SymfonyKernelSystemInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Value/SymfonyKernelSystemInfo.php -------------------------------------------------------------------------------- /src/bundle/SystemInfo/Value/SystemInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/SystemInfo/Value/SystemInfo.php -------------------------------------------------------------------------------- /src/bundle/Tests/DependencyInjection/Compiler/SystemInfoTabGroupPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/DependencyInjection/Compiler/SystemInfoTabGroupPassTest.php -------------------------------------------------------------------------------- /src/bundle/Tests/DependencyInjection/EzSystemsEzSupportToolsExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/DependencyInjection/EzSystemsEzSupportToolsExtensionTest.php -------------------------------------------------------------------------------- /src/bundle/Tests/SystemInfo/Collector/ConfigurationSymfonyKernelSystemInfoCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/SystemInfo/Collector/ConfigurationSymfonyKernelSystemInfoCollectorTest.php -------------------------------------------------------------------------------- /src/bundle/Tests/SystemInfo/Collector/EzcHardwareSystemInfoCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/SystemInfo/Collector/EzcHardwareSystemInfoCollectorTest.php -------------------------------------------------------------------------------- /src/bundle/Tests/SystemInfo/Collector/EzcPhpSystemInfoCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/SystemInfo/Collector/EzcPhpSystemInfoCollectorTest.php -------------------------------------------------------------------------------- /src/bundle/Tests/SystemInfo/Collector/IbexaSystemInfoCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/SystemInfo/Collector/IbexaSystemInfoCollectorTest.php -------------------------------------------------------------------------------- /src/bundle/Tests/SystemInfo/Collector/JsonComposerLockSystemInfoCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/SystemInfo/Collector/JsonComposerLockSystemInfoCollectorTest.php -------------------------------------------------------------------------------- /src/bundle/Tests/SystemInfo/Collector/RepositorySystemInfoCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/SystemInfo/Collector/RepositorySystemInfoCollectorTest.php -------------------------------------------------------------------------------- /src/bundle/Tests/SystemInfo/Collector/_fixtures/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/SystemInfo/Collector/_fixtures/composer.json -------------------------------------------------------------------------------- /src/bundle/Tests/SystemInfo/Collector/_fixtures/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/SystemInfo/Collector/_fixtures/composer.lock -------------------------------------------------------------------------------- /src/bundle/Tests/SystemInfo/Collector/_fixtures/corrupted_composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/SystemInfo/Collector/_fixtures/corrupted_composer.json -------------------------------------------------------------------------------- /src/bundle/Tests/SystemInfo/Collector/_fixtures/corrupted_composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/SystemInfo/Collector/_fixtures/corrupted_composer.lock -------------------------------------------------------------------------------- /src/bundle/Tests/SystemInfo/Registry/IdentifierBasedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/SystemInfo/Registry/IdentifierBasedTest.php -------------------------------------------------------------------------------- /src/bundle/Tests/View/Matcher/SystemInfo/IdentitifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/View/Matcher/SystemInfo/IdentitifierTest.php -------------------------------------------------------------------------------- /src/bundle/Tests/View/SystemInfoViewBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/View/SystemInfoViewBuilderTest.php -------------------------------------------------------------------------------- /src/bundle/Tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/Tests/bootstrap.php -------------------------------------------------------------------------------- /src/bundle/View/Matcher/SystemInfo/Identifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/View/Matcher/SystemInfo/Identifier.php -------------------------------------------------------------------------------- /src/bundle/View/SystemInfoView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/View/SystemInfoView.php -------------------------------------------------------------------------------- /src/bundle/View/SystemInfoViewBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/bundle/View/SystemInfoViewBuilder.php -------------------------------------------------------------------------------- /src/lib/Component/Dashboard/EzInfoTwigComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Component/Dashboard/EzInfoTwigComponent.php -------------------------------------------------------------------------------- /src/lib/EventListener/ConfigureMainMenuListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/EventListener/ConfigureMainMenuListener.php -------------------------------------------------------------------------------- /src/lib/EventListener/SystemInfoTabGroupListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/EventListener/SystemInfoTabGroupListener.php -------------------------------------------------------------------------------- /src/lib/Storage/AggregateMetricsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Storage/AggregateMetricsProvider.php -------------------------------------------------------------------------------- /src/lib/Storage/Metrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Storage/Metrics.php -------------------------------------------------------------------------------- /src/lib/Storage/Metrics/ContentTypesCountMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Storage/Metrics/ContentTypesCountMetrics.php -------------------------------------------------------------------------------- /src/lib/Storage/Metrics/DraftsCountMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Storage/Metrics/DraftsCountMetrics.php -------------------------------------------------------------------------------- /src/lib/Storage/Metrics/PublishedContentObjectsCountMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Storage/Metrics/PublishedContentObjectsCountMetrics.php -------------------------------------------------------------------------------- /src/lib/Storage/Metrics/RepositoryConnectionAwareMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Storage/Metrics/RepositoryConnectionAwareMetrics.php -------------------------------------------------------------------------------- /src/lib/Storage/Metrics/UsersCountMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Storage/Metrics/UsersCountMetrics.php -------------------------------------------------------------------------------- /src/lib/Storage/Metrics/VersionsCountMetrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Storage/Metrics/VersionsCountMetrics.php -------------------------------------------------------------------------------- /src/lib/Storage/MetricsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Storage/MetricsProvider.php -------------------------------------------------------------------------------- /src/lib/Tab/SystemInfo/SystemInfoTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Tab/SystemInfo/SystemInfoTab.php -------------------------------------------------------------------------------- /src/lib/Tab/SystemInfo/TabFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Tab/SystemInfo/TabFactory.php -------------------------------------------------------------------------------- /src/lib/Tests/EventListener/SystemInfoTabGroupListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Tests/EventListener/SystemInfoTabGroupListenerTest.php -------------------------------------------------------------------------------- /src/lib/Tests/VersionStability/VersionStabilityCheckerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Tests/VersionStability/VersionStabilityCheckerTest.php -------------------------------------------------------------------------------- /src/lib/Value/Stability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/Value/Stability.php -------------------------------------------------------------------------------- /src/lib/VersionStability/ComposerVersionStabilityChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/VersionStability/ComposerVersionStabilityChecker.php -------------------------------------------------------------------------------- /src/lib/VersionStability/VersionStabilityChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ez-support-tools/HEAD/src/lib/VersionStability/VersionStabilityChecker.php --------------------------------------------------------------------------------