webDEVILopers
webDEVILopers
Originally came from https://github.com/xuwupeng2000/capsitrano-scm-gitcopy/issues/33. I'm not sure if this is NOT a Capistrano issue. But since everything used to work fine in staging before implementing scm-gitcopy into production I will...
Maybe it is an interesting feature to run unit tests either locally before deploying or on production after deploy. I'm no ruby expert so this was my first approach: ```ruby...
Currently the `DoctrineODMMongoDBAdapter` only supports the Query Builder: * https://github.com/doctrine/mongodb-odm/blob/master/lib/Doctrine/ODM/MongoDB/Query/Builder.php But there is also the Aggregation Builder: * https://github.com/doctrine/mongodb-odm/blob/master/lib/Doctrine/ODM/MongoDB/Aggregation/Builder.php Adding an additional adapter based on the existing one is actually...
When using CQRS we define a readonly Command DTO with the required public properties and add validation rules (Symfony Constraints) as attributes: ```php use OpenApi\Attributes as OA; use Symfony\Component\Validator\Constraints as...
I'm using a slightly older setup: ```javascript "require": { "php": "^7.2", "ext-ctype": "*", "ext-gd": "*", "ext-iconv": "*", "ext-mongodb": "*", "ext-yaml": "*", "aws/aws-sdk-php-symfony": "^2.6.1", "beberlei/doctrineextensions": "^1.3.0", "doctrine/doctrine-bundle": "^2.7.2", "doctrine/mongodb-odm": "^2.4.3", "doctrine/mongodb-odm-bundle":...
Recently I installed a Symfony 6 app with Symfony Docker. I needed Doctrine DBAL but did not want to add the entire ORM. Unfortunately the DBAL and ORM are currently...
I am extending my User entity with an attribute using a ManyToMany association. In my example I use "costCenters" but you can think of it as the already existing "roles"...
These changes are just a proposal for solution for the following issues: - https://github.com/Danielss89/ZfcUserAdmin/issues/30 - https://github.com/Danielss89/ZfcUserAdmin/issues/31 I have not edited further code since I can't tell yet what consequences this...
I try to add custom form elements using the module options. My **User entity**: ``` class User implements UserInterface, ProviderInterface { /** * @var int * @ORM\Id * @ORM\Column(name="user_id", type="integer")...
Installed modules: ``` PHP array(2) { ["modules"] => array(12) { [0] => string(18) "ZendDeveloperTools" [1] => string(14) "DoctrineModule" [2] => string(17) "DoctrineORMModule" [3] => string(7) "ZfcBase" [4] => string(7) "ZfcUser"...