├── .github ├── pull_request_template.md └── 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 │ ├── DependencyInjection │ ├── Compiler │ │ ├── EzKernelOverridePass.php │ │ └── StandardThemePass.php │ ├── Configuration.php │ └── EzPlatformStandardDesignExtension.php │ ├── EzPlatformStandardDesignBundle.php │ └── Resources │ └── config │ ├── extension │ └── ezdesign.yaml │ └── override │ └── ezpublish.yaml └── tests └── bundle └── DependencyInjection ├── Compiler ├── EzKernelOverridePassTest.php └── StandardThemePassTest.php └── EzPlatformStandardDesignExtensionTest.php /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/browser-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/.github/workflows/browser-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/cross-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/.github/workflows/cross-merge.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-assign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/.github/workflows/pr-assign.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/.github/workflows/pr-check.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor 3 | /.php_cs.cache 4 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/.php_cs -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-bul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/LICENSE-bul -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Compiler/EzKernelOverridePass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/src/bundle/DependencyInjection/Compiler/EzKernelOverridePass.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Compiler/StandardThemePass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/src/bundle/DependencyInjection/Compiler/StandardThemePass.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/src/bundle/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/bundle/DependencyInjection/EzPlatformStandardDesignExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/src/bundle/DependencyInjection/EzPlatformStandardDesignExtension.php -------------------------------------------------------------------------------- /src/bundle/EzPlatformStandardDesignBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/src/bundle/EzPlatformStandardDesignBundle.php -------------------------------------------------------------------------------- /src/bundle/Resources/config/extension/ezdesign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/src/bundle/Resources/config/extension/ezdesign.yaml -------------------------------------------------------------------------------- /src/bundle/Resources/config/override/ezpublish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/src/bundle/Resources/config/override/ezpublish.yaml -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Compiler/EzKernelOverridePassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/tests/bundle/DependencyInjection/Compiler/EzKernelOverridePassTest.php -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/Compiler/StandardThemePassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/tests/bundle/DependencyInjection/Compiler/StandardThemePassTest.php -------------------------------------------------------------------------------- /tests/bundle/DependencyInjection/EzPlatformStandardDesignExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-standard-design/HEAD/tests/bundle/DependencyInjection/EzPlatformStandardDesignExtensionTest.php --------------------------------------------------------------------------------