PHPackages                             lixu/behat-pdo-extension - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Testing &amp; Quality](/categories/testing)
4. /
5. lixu/behat-pdo-extension

ActiveBehat-extension[Testing &amp; Quality](/categories/testing)

lixu/behat-pdo-extension
========================

A simple PDO extension for behat.

17PHP

Since Jan 1Pushed 9y ago1 watchersCompare

[ Source](https://github.com/xu-li/behat-pdo-extension)[ Packagist](https://packagist.org/packages/lixu/behat-pdo-extension)[ RSS](/packages/lixu-behat-pdo-extension/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

This is a simple PDO extension for [behat](http://behat.org).

Install
=======

[](#install)

```
composer require behat/behat lixu/behat-pdo-extension --dev
```

behat.yml
=========

[](#behatyml)

Add following configuration items to your `behat.yml`.

```
default:
  suites:
    default:
      path: %paths.base%/features
      contexts:
        - FeatureContext
        - lixu\BehatPDOExtension\Context\PDOContext
  extensions:
    lixu\BehatPDOExtension:
      dsn: 'mysql:host=127.0.0.1;dbname=test;charset=UTF8'
      username: 'root'
      password: ''
```

Write a scenario
================

[](#write-a-scenario)

Here is a simple scenario:

Note: You have to implement the "When I eat one apple" step by yourself.

```
  Scenario: Buy a product
    Given there are following "fruits":
      | name   | stock_level |
      | apple  | 10          |
      | orange | 5           |

    When I eat one apple

    Then there should be following "fruits":
      | name   | stock_level |
      | apple  | 9           |
      | orange | 5           |

```

Use PDO in your feature class
=============================

[](#use-pdo-in-your-feature-class)

If you want to use `PDO` in your feature class, you can simply extend your feature class from `lixu\BehatPDOExtension\Context\PDOContext`, and get the PDO instance by `$this->getPDO()`.

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/171665?v=4)[lixu](/maintainers/xu-li)[@xu-li](https://github.com/xu-li)

---

Top Contributors

[![xu-li](https://avatars.githubusercontent.com/u/171665?v=4)](https://github.com/xu-li "xu-li (1 commits)")

### Embed Badge

![Health badge](/badges/lixu-behat-pdo-extension/health.svg)

```
[![Health](https://phpackages.com/badges/lixu-behat-pdo-extension/health.svg)](https://phpackages.com/packages/lixu-behat-pdo-extension)
```

###  Alternatives

[dms/phpunit-arraysubset-asserts

This package provides ArraySubset and related asserts once deprecated in PHPUnit 8

14228.7M341](/packages/dms-phpunit-arraysubset-asserts)[phpbenchmark/phpbenchmark

Easy to use benchmark toolkit for your PHP-application. This library contains classes for comparing algorithms as well as benchmarking application responses

8011.5k2](/packages/phpbenchmark-phpbenchmark)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
