Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/polderknowledge/zend-doctrine-test-bootstrap

This is for testing PHP code in the Zend Framework + Doctrine + PHPUnit ecosystem
https://github.com/polderknowledge/zend-doctrine-test-bootstrap

doctrine-orm phpunit zend zend-framework3 zendframework

Last synced: about 1 month ago
JSON representation

This is for testing PHP code in the Zend Framework + Doctrine + PHPUnit ecosystem

Awesome Lists containing this project

README

        

# zend-doctrine-test-bootstrap

This library is for testing PHP code in the Zend Framework 3 + Doctrine + PHPUnit ecosystem

It contains:
* An AbstractTest class for PHPUnit to get hold of the ServiceManager and EntityManager
* A singleton Bootstrap class which can bootstrap Zend and reset the database to a clean state

## CI configuration

This library wil read an extra Zend application configuration file if present: 'config/test.config.php'

I recommend you create this:

```php
[
'config_glob_paths' => [
'config/autoload/{,*.}{global,local,test}.php',
],
],
];
```

And then you can commmit the database connection parameters of your CI environment to 'config/autoload/doctrine.test.php'