﻿---
title: Supported technologies
description: The Elastic APM PHP Agent supports the technologies listed below. Elastic supports OpenTelemetry, which allows logs, metrics, and trace signal collection...
url: https://www.elastic.co/elastic/docs-builder/docs/3028/reference/apm/agents/php/supported-technologies
products:
  - APM Agent
  - APM PHP Agent
applies_to:
  - Serverless Observability projects: Generally available
  - Elastic Stack: Generally available
  - Application Performance Monitoring Agent for PHP: Generally available
---

# Supported technologies
The Elastic APM PHP Agent supports the technologies listed below.
Elastic supports OpenTelemetry, which allows logs, metrics, and trace signal collection for many of these technologies. Consider using the [EDOT PHP SDK](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3028/reference/opentelemetry/edot-sdks/php) for observability data so you continue to get the full power of Elastic's platform.
If the agent doesn’t support your favorite technology yet, you can vote for it by participating in [our survey](https://docs.google.com/forms/d/e/1FAIpQLSf8c3BJVMqaeuqpq-t3_Q4NilNcdsrzK1qJ4Qo9JpJslrmYzA/viewform). We will use the results to add support for the most requested technologies.

## Operating systems

We officially support Linux systems (glibc, deb and rpm packages) and Alpine Linux (musl libc - apk packages) for x86_64 (AMD64) processors. Experimentally, we also provide packages for the ARM64 architecture - please note that these packages have not been fully tested.

## PHP versions

The agent supports PHP versions 7.2-8.4.

## Unsupported PHP Server API’s (SAPI)

Currenly we’re not supporting `phpdbg` - agent extension can be loaded but will remain non-functional

## Web frameworks

Automatic instrumentation for a web framework means a transaction is automatically created for each incoming request and it is named after the registered route.
We support automatic instrumentation for the following web frameworks.

| Framework                                                                           | Supported versions                                                          |
|-------------------------------------------------------------------------------------|-----------------------------------------------------------------------------|
| Framework-less PHP application (i.e., application using PHP’s built in web support) | any version bundled with a [supported PHP version](#supported-php-versions) |
| Laravel                                                                             | 6, 7, 8, 9, 10                                                              |
| WordPress                                                                           | 5, 6                                                                        |


## Data access technologies

We support automatic instrumentation for the following data access technologies.

| Data access technology | Supported versions                               | Notes                                                                                                                                                              |
|------------------------|--------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| PHP Data Objects (PDO) | any version bundled with a supported PHP version | The agent automatically creates DB spans for all your PDO queries. This includes PDO queries executed by object relational mappers (ORM) like Doctrine & Eloquent. |
| MySQLi                 | any version bundled with a supported PHP version |                                                                                                                                                                    |


## HTTP clients

Automatic instrumentation for an HTTP client technology means an HTTP span is automatically created for each outgoing HTTP request and distributed tracing headers are propagated. The spans are named after the schema `<method> <host>`, for example `GET elastic.co`.

| Framework        | Supported versions                                                          |
|------------------|-----------------------------------------------------------------------------|
| `curl` extension | any version bundled with a [supported PHP version](#supported-php-versions) |
| `Guzzle` library | 6, 7                                                                        |


## Capturing PHP errors as APM error events

The agent automatically creates APM error events for PHP errors triggered by the monitored application. See [PHP errors as APM error events](/elastic/docs-builder/docs/3028/reference/apm/agents/php/configuration#configure-php-error-reporting) for the relevant configuration settings.