-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/4.5' into manual-cross-merge
- Loading branch information
Showing
351 changed files
with
6,229 additions
and
4,828 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
| Question | Answer | | ||
|--------------------------|-----------------------------------------------------| | ||
| **JIRA issue** | [IBX-XXXX](https://issues.ibexa.co/browse/IBX-XXXX) | | ||
| **Type** | feature/bug/improvement | | ||
| **Target Ibexa version** | `v4.x` - please update `x` accordingly | | ||
| **BC breaks** | yes/no | | ||
|
||
<!-- Replace this comment with Pull Request description --> | ||
|
||
#### Checklist: | ||
- [ ] Provided PR description. | ||
- [ ] Tested the solution manually. | ||
- [ ] Provided automated test coverage. | ||
- [ ] Checked that target branch is set correctly (main for features, the oldest supported for bugs). | ||
- [ ] Ran PHP CS Fixer for new PHP code (use `$ composer fix-cs`). | ||
- [ ] Asked for a review (ping for example `@ibexa/php-dev` for back-end changes and/or `@ibexa/javascript-dev` for front-end changes). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,6 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
php: | ||
- '7.3' | ||
- '7.4' | ||
- '8.0' | ||
- '8.1' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
matrix: | ||
solr-version: | ||
- '7.7.3' | ||
- '8.11.1' | ||
- '8.11.2' | ||
cores-setup: | ||
- 'dedicated' | ||
- 'shared' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
/** | ||
* @copyright Copyright (C) Ibexa AS. All rights reserved. | ||
* @license For full copyright and license information view LICENSE file distributed with this source code. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
use Ibexa\CodeStyle\PhpCsFixer\InternalConfigFactory; | ||
|
||
$configFactory = new InternalConfigFactory(); | ||
$configFactory->withRules([ | ||
'declare_strict_types' => false, | ||
]); | ||
|
||
return $configFactory | ||
->buildConfig() | ||
->setFinder( | ||
PhpCsFixer\Finder::create() | ||
->in([ | ||
__DIR__ . '/src', | ||
__DIR__ . '/tests', | ||
]) | ||
->files()->name('*.php') | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ To contribute to this bundle, make sure to run both unit and integration tests ( | |
1. Set up this repository locally | ||
|
||
```bash | ||
git clone [email protected]:ezsystems/ezplatform-solr-search-engine.git solr | ||
git clone [email protected]:ibexa/solr.git solr | ||
cd solr | ||
composer install | ||
``` | ||
|
@@ -27,10 +27,10 @@ To contribute to this bundle, make sure to run both unit and integration tests ( | |
|
||
3. Run integration tests | ||
|
||
To run integration tests against Solr, using [default config](https://github.com/ezsystems/ezplatform-kernel/blob/master/phpunit-integration-legacy-solr.xml#L14-L19): | ||
To run integration tests against Solr, using [default config](https://github.com/ibexa/core/blob/master/phpunit-integration-legacy-solr.xml#L14-L19): | ||
```bash | ||
export CORES_SETUP="single" | ||
php -d memory_limit=-1 vendor/bin/phpunit --bootstrap tests/bootstrap.php -vc vendor/ezsystems/ezplatform-kernel/phpunit-integration-legacy-solr.xml | ||
php -d memory_limit=-1 vendor/bin/phpunit --bootstrap tests/bootstrap.php -vc vendor/ibexa/core/phpunit-integration-legacy-solr.xml | ||
``` | ||
|
||
## COPYRIGHT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 0 additions & 20 deletions
20
lib/Container/Compiler/FieldMapperPass/BlockFieldMapperPass.php
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.