2026-01-24 09:09:38 +01:00
2026-01-12 13:57:11 +01:00
2024-10-31 01:16:58 +01:00
2024-02-22 09:29:06 -05:00
2026-01-03 23:36:42 +01:00
2025-07-29 17:18:27 +02:00
2026-03-18 01:45:15 +01:00
2026-02-24 00:27:29 +01:00
2026-01-24 09:09:38 +01:00
2024-08-14 10:35:01 -04:00
2023-06-22 20:01:31 -04:00
2026-01-24 09:09:38 +01:00
2026-01-24 09:09:38 +01:00
2026-01-13 07:57:17 +01:00
2023-10-22 17:38:34 -04:00
2024-05-01 09:55:14 -04:00
2026-01-24 09:09:38 +01:00
2025-06-03 08:47:17 +02:00
2026-01-13 07:57:17 +01:00
2026-03-18 01:45:15 +01:00

ux.symfony.com

Source code for ux.symfony.com.

Installation

Forking the repository

To contribute to the website, you need to fork the symfony/ux.symfony.com repository on GitHub. This will give you a copy of the code under your GitHub user account. Read the documentation "How to fork a repository".

After forking the repository, you can clone it to your local machine:

# Using GitHub CLI https://cli.github.com/
$ gh repo clone <USERNAME>/ux.symfony.com ux.symfony.com

# Using SSH
$ git clone git@github.com:<USERNAME>/ux.symfony.com.git ux.symfony.com
$ cd ux.symfony.com
# Add the upstream repository, to keep your fork up-to-date
$ git remote add upstream git@github.com:symfony/ux.symfony.com.git

Setting up the development environment

To set up the development environment, you need the following tools:

  • PHP 8.5 or higher - Required for running the Symfony application
  • Composer - PHP dependency manager
  • Symfony CLI - Recommended for running the development server
  • Docker - For running services (database, etc.)

With these tools installed, you can install the project dependencies:

# Install PHP dependencies
symfony composer install

Running the website locally

To run the website in local development:

symfony serve --open
# The website will be accessible at https://127.0.0.1:9044/

Database

Run database migrations:

symfony console doctrine:migration:migrate

Populate the database:

symfony console app:load-data

Assets

Download the importmap packages locally:

symfony console importmap:install

Testing

symfony php bin/phpunit
Description
⚠️ ARCHIVED: Original GitHub repository no longer exists. Preserved as backup on 2026-01-22T16:43:22.050Z
Readme MIT 21 MiB
Languages
PHP 55%
Twig 29.8%
SCSS 11.5%
JavaScript 2.4%
CSS 1.1%
Other 0.2%