--- title: Connect from Symfony with Doctrine to Neon subtitle: Set up a Neon project in seconds and connect from Symfony with Doctrine enableTableOfContents: true redirectFrom: - /docs/quickstart/symfony - /docs/integrations/symfony updatedOn: '2025-10-31T11:07:57.609Z' --- Symfony is a free and open-source PHP web application framework. Symfony uses the Doctrine library for database access. Connecting to Neon from Symfony with Doctrine is the same as connecting to a standalone Postgres installation from Symfony with Doctrine. Only the connection details differ. To connect to Neon from Symfony with Doctrine: ## Create a Neon project If you do not have one already, create a Neon project. Save your connection details including your password. They are required when defining connection settings. 1. Navigate to the [Projects](https://console.neon.tech/app/projects) page in the Neon Console. 2. Click **New Project**. 3. Specify your project settings and click **Create Project**. ## Configure the connection In your `.env` file, set the `DATABASE_URL` to the Neon project connection string that you copied in the previous step. ```shell DATABASE_URL="postgresql://[user]:[password]@[neon_hostname]/[dbname]?charset=utf8&sslmode=require&channel_binding=require" ``` You can find the connection string for your database by clicking the **Connect** button on your **Project Dashboard**. For more information, see [Connect from any application](/docs/connect/connect-from-any-app).