Click here to Skip to main content
15,902,938 members
Everything / Symfony

Symfony

Symfony

Great Reads

by André Marcos (Advisor), William Caetano Cardenas
Prototyping a Web System to Schedule Patients in Local Medical Clinics Oriented by Test Driven Development Guidelines Supported by PHP, PHPUnit and Symfony Framework Technologies
by VipinMittal18
How to enable debugging in Twig templates - Drupal 8
by Alvin Bunk
How to test a dropdown list in Symfony and Mink

Latest Articles

by André Marcos (Advisor), William Caetano Cardenas
Prototyping a Web System to Schedule Patients in Local Medical Clinics Oriented by Test Driven Development Guidelines Supported by PHP, PHPUnit and Symfony Framework Technologies
by VipinMittal18
How to enable debugging in Twig templates - Drupal 8
by Alvin Bunk
How to test a dropdown list in Symfony and Mink

All Articles

Sort by Score

Symfony 

29 May 2023 by André Marcos (Advisor), William Caetano Cardenas
Prototyping a Web System to Schedule Patients in Local Medical Clinics Oriented by Test Driven Development Guidelines Supported by PHP, PHPUnit and Symfony Framework Technologies
17 Oct 2019 by VipinMittal18
How to enable debugging in Twig templates - Drupal 8
29 Sep 2017 by Alvin Bunk
How to test a dropdown list in Symfony and Mink
2 Jan 2018 by Ramasamy Viswanathan
When I do, php bin/console doctrine:schema:update --force I get, Updating database schema... [Doctrine\DBAL\Exception\DriverException] An exception occurred while...
6 Feb 2018 by Member 13663892
have a question about left join in doctrine in Symfony 2.7. Example code: public function test($id, $offset, $limit) { $build = $this->createQueryBuilder('building'); $build ->addSelect('users', 'numbers') ->join('building.users', 'users') // limit the numbers...
5 Sep 2020 by Truck53
Hi, I am trying to implement google recaptcha using reactjs and send it to the google servers for verification using a php backend. ever here is my reactjs code: function NewUser(post){ function onChange(value) { const data = [ ...
9 Nov 2020 by Truck53
How do I get my lexik/jwt bundle to return a token in symfony 5.1 instead of a webpage. Here is my lexik_jwt_authentication.yaml file: lexik_jwt_authentication: secret_key: '%env(resolve:JWT_SECRET_KEY)%' public_key:...
27 Nov 2020 by Ivan Sakharov
I'm trying to convert SQL-query using subquery into Doctrine Query Builder format (I'm writing a project with Symfony for PHP). Here's the original SQL-query: SELECT b.brandid, b.brandName, b.netIncome, pc.PCompanyName, sum(ss.qty) as qty,...
27 Nov 2020 by CHill60
You need to use createSubQuery and then refer to that sub query in your main query I found a worked example here[^]
22 Apr 2021 by matr095
I created a Symfony web app without the --full option with the command line. symfony new my_project_name Further in the time, I realise that I need it. How to include required packages to add --full in an existing Symfony project What I...
22 Apr 2021 by Richard MacCutchan
See Symfony Support[^]
14 May 2021 by Member 377486
I switched from asp.net core and Laravel to Symfony5. And I have a problem with the my service and the configuration system.Dependency Injection still works even though I turned off autowiring. Also, the settings inside the dev folder do not...
23 May 2023 by BriceH
I'm trying to set up a configuration for my symfony's app using traefik, docker-compose and ldap. Unfortunately, I can't get my ldap. Is there someone who knows what's happen ? Thanks for your help :) Here my security.yaml file : security: #...
5 Sep 2020 by OriginalGriff
Have a look here: Build a Contact Form with React, AJAX, PHP and reCaptcha[^]