Stefan Gehrig
Stefan Gehrig
After updating to Neo4j 3.2.0 the browser cannot connect to the database using HTTPS instead of Bolt any more. Due to firewall restrictions we're not able to open the Bolt...
Using the following simple Tree ```php #[ORM\Entity(repositoryClass: OURepository::class)] #[ORM\Table(name: 'ous')] #[ORM\Index(columns: ['lft', 'rgt'], name: 'idx_tree')] #[Gedmo\Tree(type: 'nested')] class OU { #[ORM\Id] #[ORM\Column('id', 'guid')] private string $id; #[ORM\ManyToOne(targetEntity: OU::class, inversedBy: 'children')]...
### Description Due to how the web hook component is setup it's not possible to change the HTTP response for the web hook request from its consumer. It's only possible...
This is the PR requested for issue #8011. It includes tests for some arithmetic expressions being used in `ORDER BY` clauses of a DQL query. - `ORDER BY p.id +...
As discussed in #2006 it is currently not possible to have blamable fields backed by `integer` columns. This PR (re-) adds the `integer` type to the list of valid field...
Based on #2933. This adds `xdebug` to the Docker image. This will allow to start debugging issues immediately when contributing to the library.
This PR tries to solve the issue described in #2582. Currently it only provides a test case that reproduces the issue and the observations made in https://github.com/doctrine-extensions/DoctrineExtensions/issues/2582#issuecomment-1961459995 (persisting roots first)...
## Feature Request I think it might be a good idea to add `Xdebug` to the Docker container image (using the `Dockerfile`) that is distributed with the repository. This will...