├── .github └── workflows │ ├── pr-assign.yaml │ ├── pr-check.yaml │ └── release.yml ├── .gitignore ├── COPYRIGHT ├── DependencyInjection ├── Configuration.php └── EzPlatformEnterpriseEditionInstallerExtension.php ├── Event └── Subscriber │ └── BuildSchemaSubscriber.php ├── EzPlatformEnterpriseEditionInstallerBundle.php ├── Installer └── Installer.php ├── LICENSE ├── LICENSE-bul ├── README.md ├── Resources ├── config │ ├── services.yaml │ └── storage │ │ └── schema.yaml └── sql │ ├── mysql │ └── cleandata.sql │ └── postgresql │ └── cleandata.sql └── composer.json /.github/workflows/pr-assign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/.github/workflows/pr-assign.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/.github/workflows/pr-check.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/EzPlatformEnterpriseEditionInstallerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/DependencyInjection/EzPlatformEnterpriseEditionInstallerExtension.php -------------------------------------------------------------------------------- /Event/Subscriber/BuildSchemaSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/Event/Subscriber/BuildSchemaSubscriber.php -------------------------------------------------------------------------------- /EzPlatformEnterpriseEditionInstallerBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/EzPlatformEnterpriseEditionInstallerBundle.php -------------------------------------------------------------------------------- /Installer/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/Installer/Installer.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-bul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/LICENSE-bul -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/Resources/config/services.yaml -------------------------------------------------------------------------------- /Resources/config/storage/schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/Resources/config/storage/schema.yaml -------------------------------------------------------------------------------- /Resources/sql/mysql/cleandata.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/Resources/sql/mysql/cleandata.sql -------------------------------------------------------------------------------- /Resources/sql/postgresql/cleandata.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/Resources/sql/postgresql/cleandata.sql -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezplatform-ee-installer/HEAD/composer.json --------------------------------------------------------------------------------