Javier Eguiluz 781e485625 minor #1644 UnderscoreNamingStrategy is always number aware since Doctrine ORM v3 (rosier)
This PR was merged into the main branch.

Discussion
----------

UnderscoreNamingStrategy is always number aware since Doctrine ORM v3

Following:
- https://github.com/doctrine/orm/pull/9741
- https://github.com/doctrine/DoctrineBundle/pull/1929

Commits
-------

46fbbe8e UnderscoreNamingStrategy is always number aware since Doctrine ORM v3
2026-02-02 08:27:04 +01:00
2025-11-25 11:29:54 +01:00
2023-02-14 09:04:09 +01:00
2025-02-21 19:12:53 +01:00
2025-07-25 16:52:20 +02:00
2025-08-13 22:12:35 +02:00
2025-11-25 11:29:54 +01:00
2025-08-13 22:12:35 +02:00
2026-01-18 15:09:42 +01:00
2025-08-13 22:12:35 +02:00
2026-02-02 08:13:59 +01:00
2026-02-02 08:13:59 +01:00
2023-02-02 21:54:23 +01:00
2025-01-01 21:45:30 +01:00
2025-03-19 11:56:48 +01:00
2025-11-25 11:29:54 +01:00
2025-10-21 10:41:22 +02:00
2026-02-02 08:13:59 +01:00

Symfony Demo Application

The "Symfony Demo Application" is a reference application created to show how to develop applications following the Symfony Best Practices.

You can also learn about these practices in the official Symfony Book.

Requirements

Installation

There are 3 different ways of installing this project depending on your needs:

Option 1. Download Symfony CLI and use the symfony binary installed on your computer to run this command:

symfony new --demo my_project

Option 2. Download Composer and use the composer binary installed on your computer to run these commands:

# you can create a new project based on the Symfony Demo project...
composer create-project symfony/symfony-demo my_project

# ...or you can clone the code repository and install its dependencies
git clone https://github.com/symfony/demo.git my_project
cd my_project/
composer install

Usage

There's no need to configure anything before running the application. There are 2 different ways of running this application depending on your needs:

Option 1. Download Symfony CLI and run this command:

cd my_project/
symfony serve

Then access the application in your browser at the given URL (https://localhost:8000 by default).

Option 2. Use a web server like Nginx or Apache to run the application (read the documentation about configuring a web server for Symfony).

On your local machine, you can run this command to use the built-in PHP web server:

cd my_project/
php -S localhost:8000 -t public/

Tests

Execute this command to run tests:

cd my_project/
./bin/phpunit
Description
⚠️ ARCHIVED: Original GitHub repository no longer exists. Preserved as backup on 2026-01-22T16:32:12.966Z
Readme MIT 34 MiB
Languages
PHP 75.4%
Twig 14.5%
SCSS 7%
JavaScript 2.9%
CSS 0.2%