-
-
Notifications
You must be signed in to change notification settings - Fork 224
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/9.0' into 90/verifyAndOptimizeFl…
…owQuery
- Loading branch information
Showing
62 changed files
with
261 additions
and
534 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
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
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,10 @@ | ||
# Event Sourced Content Repository - Content Graph PostgreSQL Adapter | ||
|
||
This repository is a **read-only subsplit** of a package that is part of the [Neos Development Collection](https://github.com/neos/neos-development-collection) | ||
|
||
Contribute | ||
---------- | ||
|
||
If you want to contribute to the Event Sourced Content Repository, please have a look at | ||
https://github.com/neos/neos-development-collection (Branch 9.0) - it is the repository | ||
used for development and all pull requests should go into it. |
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
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
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
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
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
5 changes: 5 additions & 0 deletions
5
Neos.ContentRepositoryRegistry.DoctrineDbalClient/Configuration/Caches.yaml
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,5 @@ | ||
Neos_ContentGraph_DoctrineDbalAdapter_ProcessedEvents: | ||
frontend: Neos\Cache\Frontend\VariableFrontend | ||
backend: Neos\Cache\Backend\FileBackend | ||
backendOptions: | ||
defaultLifetime: 400 |
11 changes: 11 additions & 0 deletions
11
Neos.ContentRepositoryRegistry.DoctrineDbalClient/Configuration/Objects.yaml
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,11 @@ | ||
Neos\ContentRepository\Core\Infrastructure\DbalClientInterface: | ||
className: 'Neos\ContentRepositoryRegistry\DoctrineDbalClient\DoctrineDbalClient' | ||
|
||
Neos\ContentGraph\DoctrineDbalAdapter\DoctrineDbalContentGraphProjectionFactory: | ||
scope: singleton | ||
factoryObjectName: 'Neos\ContentRepositoryRegistry\Infrastructure\GenericObjectFactory' | ||
arguments: | ||
1: | ||
value: 'Neos\ContentGraph\DoctrineDbalAdapter\DoctrineDbalContentGraphProjectionFactory' | ||
2: | ||
object: 'Neos\ContentRepository\Core\Infrastructure\DbalClientInterface' |
9 changes: 9 additions & 0 deletions
9
Neos.ContentRepositoryRegistry.DoctrineDbalClient/Configuration/Settings.yaml
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,9 @@ | ||
Neos: | ||
ContentRepositoryRegistry: | ||
presets: | ||
'default': | ||
projections: | ||
# NOTE: the following name must be stable, because we use it f.e. in Neos UI to register | ||
# catchUpHooks for content cache flushing | ||
'Neos.ContentRepository:ContentGraph': | ||
factoryObjectName: Neos\ContentGraph\DoctrineDbalAdapter\DoctrineDbalContentGraphProjectionFactory |
22 changes: 22 additions & 0 deletions
22
Neos.ContentRepositoryRegistry.DoctrineDbalClient/composer.json
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,22 @@ | ||
{ | ||
"name": "neos/contentrepositoryregistry-doctrinedbalclient", | ||
"type": "neos-package", | ||
"description": "Doctrine DBAL client for the Neos Content Repository Registry", | ||
"license": [ | ||
"GPL-3.0-or-later" | ||
], | ||
"require": { | ||
"neos/flow": "^9.0", | ||
"neos/contentrepository-core": "self.version", | ||
"neos/contentrepositoryregistry": "self.version", | ||
"neos/contentgraph-doctrinedbaladapter": "self.version" | ||
}, | ||
"provide": { | ||
"neos/contentrepositoryregistry-storageclient": "self.version" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Neos\\ContentRepositoryRegistry\\DoctrineDbalClient\\": "Classes" | ||
} | ||
} | ||
} |
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
5 changes: 5 additions & 0 deletions
5
Neos.ContentRepositoryRegistry.PostgresDbalClient/Configuration/Caches.yaml
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,5 @@ | ||
Neos_ContentGraph_PostgreSQLAdapter_ProcessedEvents: | ||
frontend: Neos\Cache\Frontend\VariableFrontend | ||
backend: Neos\Cache\Backend\FileBackend | ||
backendOptions: | ||
defaultLifetime: 400 |
8 changes: 8 additions & 0 deletions
8
Neos.ContentRepositoryRegistry.PostgresDbalClient/Configuration/Objects.yaml
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,8 @@ | ||
Neos\ContentGraph\PostgreSQLAdapter\HypergraphProjectionFactory: | ||
scope: singleton | ||
factoryObjectName: Neos\ContentRepositoryRegistry\Infrastructure\GenericObjectFactory | ||
arguments: | ||
1: | ||
value: Neos\ContentGraph\PostgreSQLAdapter\HypergraphProjectionFactory | ||
2: | ||
object: 'Neos\ContentRepositoryRegistry\PostgresDbalClient\PostgresDbalClient' |
22 changes: 22 additions & 0 deletions
22
Neos.ContentRepositoryRegistry.PostgresDbalClient/composer.json
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,22 @@ | ||
{ | ||
"name": "neos/contentrepositoryregistry-postgresdbalclient", | ||
"type": "neos-package", | ||
"description": "PostgreSQL-optimized Doctrine DBAL client for the Neos Content Repository Registry", | ||
"license": [ | ||
"GPL-3.0-or-later" | ||
], | ||
"require": { | ||
"neos/flow": "^9.0", | ||
"neos/contentrepository-core": "self.version", | ||
"neos/contentrepositoryregistry": "self.version", | ||
"neos/contentgraph-postgresqladapter": "self.version" | ||
}, | ||
"provide": { | ||
"neos/contentrepositoryregistry-storageclient": "self.version" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Neos\\ContentRepositoryRegistry\\PostgresDbalClient\\": "Classes" | ||
} | ||
} | ||
} |
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,18 @@ | ||
{ | ||
"name": "neos/contentrepositoryregistry-testsuite", | ||
"type": "neos-package", | ||
"description": "Testing support suite for the Neos Content Repository Registry. Contains fixtures and helpers for all layers of tests", | ||
"license": [ | ||
"GPL-3.0-or-later" | ||
], | ||
"require": { | ||
"neos/contentrepository-core": "self.version", | ||
"neos/contentrepositoryregistry": "self.version", | ||
"neos/behat": "^9.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Neos\\ContentRepositoryRegistry\\TestSuite\\": "Classes" | ||
} | ||
} | ||
} |
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
Oops, something went wrong.