{ "manifests": { "enigma972/user-bundle": { "manifest": { "bundles": { "Enigma972\\UserBundle\\Enigma972UserBundle": [ "all" ] }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/", "src/": "%SRC_DIR%/" }, "post-install-output": [ " * Create an User entity and extend Enigma972\\UserBundle\\Entity\\User class", "", " * And add all properties and methods you needs, it is your!", "", "Documentation: https://www.github.com/enigma972/user-bundle" ] }, "files": { "config/packages/enigma972_user.yaml": { "contents": [ "enigma972_user:", " # if this value equal true, the User should confirm theire mail", " check_mail: false", " # The validity duration in secondes, 4 houres by default (14,400 sec)", " reset_password_code_validity: 14400", " # where to redirect after login", " target: home", " # the no reply email for this app", " no_reply_mail: no-reply@mail.com", " not_send_welcome_mail: true", "" ], "executable": false }, "config/routes/enigma972_user.yaml": { "contents": [ "enigma972_user:", " resource: '@Enigma972UserBundle/Controller/'", " type: annotation", "" ], "executable": false }, "src/Entity/User.php": { "contents": [ "createQueryBuilder('u')", " ->andWhere('u.exampleField = :val')", " ->setParameter('val', $value)", " ->orderBy('u.id', 'ASC')", " ->setMaxResults(10)", " ->getQuery()", " ->getResult()", " ;", " }", " */", "", " /*", " public function findOneBySomeField($value): ?User", " {", " return $this->createQueryBuilder('u')", " ->andWhere('u.exampleField = :val')", " ->setParameter('val', $value)", " ->getQuery()", " ->getOneOrNullResult()", " ;", " }", " */", "}", "" ], "executable": false } }, "ref": "498f1288950a5304338e73ce282df934828c8cf4" } } }