From e9f5671d9e8730551687d1b438a30cbda3efcefa Mon Sep 17 00:00:00 2001 From: Sebastiaan Stok Date: Fri, 7 Apr 2023 09:30:37 +0200 Subject: [PATCH 1/5] Initial commit --- .editorconfig | 30 ++++++++++++++++++++++++++++++ .gitattributes | 4 ++++ .gitignore | 12 ++++++++++++ config.php | 21 +++++++++++++++++++++ 4 files changed, 67 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 config.php diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..4a7cec12 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,30 @@ +; top-most EditorConfig file +root = true + +; Unix-style newlines +[*] +end_of_line = LF + +[*.php] +indent_style = space +indent_size = 4 + +[*.js] +indent_style = space +indent_size = 4 + +[*.rst] +indent_style = space +indent_size = 4 + +[*.md] +indent_style = space +indent_size = 4 + +[*.yml] +indent_style = space +indent_size = 4 + +[*.xml] +indent_style = space +indent_size = 4 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..697e6e32 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +* text=auto + +# Always use LF +core.autocrlf=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..323f919b --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +/phpunit.xml +/composer.lock +*.phar +/vendor/ +/.php_cs.cache +build/** +*.phar +/var/ + +.phpunit.result.cache +/lib/Symfony/SearchBundle/Tests/Functional/Application/var/ +.php-cs-fixer.cache diff --git a/config.php b/config.php new file mode 100644 index 00000000..c6097ffb --- /dev/null +++ b/config.php @@ -0,0 +1,21 @@ + 2, + 'branches' => [ + ':default' => [ + 'sync-tags' => true, + 'split' => [ + 'lib/ApiPlatform' => 'git@github.com:rollerworks/search-api-platform.git', + 'lib/Core' => 'git@github.com:rollerworks/search-core.git', + 'lib/Doctrine/Dbal' => 'git@github.com:rollerworks/search-doctrine-dbal.git', + 'lib/Doctrine/Orm' => 'git@github.com:rollerworks/search-doctrine-orm.git', + 'lib/Elasticsearch' => 'git@github.com:rollerworks/search-elasticsearch.git', + 'lib/Symfony/SearchBundle' => 'git@github.com:rollerworks/RollerworksSearchBundle.git', + 'lib/Symfony/Validator' => 'git@github.com:rollerworks/search-symfony-validator.git', + ], + ], + ], +]; From e9dcc187fe8e6c6acd5a3a3d8c8e0481b436b274 Mon Sep 17 00:00:00 2001 From: Sebastiaan Stok Date: Mon, 29 Apr 2024 20:07:43 +0200 Subject: [PATCH 2/5] Add main-branch --- config.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.php b/config.php index c6097ffb..18b95155 100644 --- a/config.php +++ b/config.php @@ -1,9 +1,10 @@ 2, + 'main_branch' => 'main', 'branches' => [ ':default' => [ 'sync-tags' => true, From b2fddc309b3626eb8ffdafd83a3ec75b8c51fa58 Mon Sep 17 00:00:00 2001 From: Sebastiaan Stok Date: Mon, 16 Sep 2024 21:00:25 +0200 Subject: [PATCH 3/5] Enable changd-only for pull-request --- config.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.php b/config.php index 18b95155..6ede15f6 100644 --- a/config.php +++ b/config.php @@ -19,4 +19,7 @@ ], ], ], + 'pull_request' => [ + 'split' => 'changed-only', + ], ]; From d513d83ff381c5c5b6a06e6436e36849efb46544 Mon Sep 17 00:00:00 2001 From: Sebastiaan Stok Date: Mon, 16 Feb 2026 11:02:41 +0100 Subject: [PATCH 4/5] Ignore the the 1.x branch as unmaintained --- .gitignore | 1 + config.php | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 323f919b..fd941b02 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ build/** .phpunit.result.cache /lib/Symfony/SearchBundle/Tests/Functional/Application/var/ .php-cs-fixer.cache +lib/Symfony/SearchBundle/Tests/Functional/Application/config/reference.php diff --git a/config.php b/config.php index 6ede15f6..3f17d955 100644 --- a/config.php +++ b/config.php @@ -18,6 +18,7 @@ 'lib/Symfony/Validator' => 'git@github.com:rollerworks/search-symfony-validator.git', ], ], + '1.x' => false, ], 'pull_request' => [ 'split' => 'changed-only', From 93d6a1b6b229aa00f8b4d637ac3e1f854d9c0c7d Mon Sep 17 00:00:00 2001 From: Sebastiaan Stok Date: Fri, 20 Mar 2026 11:45:49 +0100 Subject: [PATCH 5/5] Update split-repository locations --- config.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/config.php b/config.php index 3f17d955..1918732a 100644 --- a/config.php +++ b/config.php @@ -1,6 +1,6 @@ 2, @@ -9,13 +9,13 @@ ':default' => [ 'sync-tags' => true, 'split' => [ - 'lib/ApiPlatform' => 'git@github.com:rollerworks/search-api-platform.git', - 'lib/Core' => 'git@github.com:rollerworks/search-core.git', - 'lib/Doctrine/Dbal' => 'git@github.com:rollerworks/search-doctrine-dbal.git', - 'lib/Doctrine/Orm' => 'git@github.com:rollerworks/search-doctrine-orm.git', - 'lib/Elasticsearch' => 'git@github.com:rollerworks/search-elasticsearch.git', - 'lib/Symfony/SearchBundle' => 'git@github.com:rollerworks/RollerworksSearchBundle.git', - 'lib/Symfony/Validator' => 'git@github.com:rollerworks/search-symfony-validator.git', + 'lib/ApiPlatform' => 'git@github.com:rollersearch/search-api-platform.git', + 'lib/Core' => 'git@github.com:rollersearch/search-core.git', + 'lib/Doctrine/Dbal' => 'git@github.com:rollersearch/search-doctrine-dbal.git', + 'lib/Doctrine/Orm' => 'git@github.com:rollersearch/search-doctrine-orm.git', + 'lib/Elasticsearch' => 'git@github.com:rollersearch/search-elasticsearch.git', + 'lib/Symfony/SearchBundle' => 'git@github.com:rollersearch/search-bundle.git', + 'lib/Symfony/Validator' => 'git@github.com:rollersearch/search-symfony-validator.git', ], ], '1.x' => false,