1
0
mirror of synced 2024-12-05 03:06:05 +03:00

PHPBench base config

This commit is contained in:
Marco Pivetta 2016-05-26 20:17:41 +02:00 committed by Luís Cobucci
parent c8a41598c9
commit 25669c51b6
No known key found for this signature in database
GPG Key ID: EC61C5F01750ED3C
2 changed files with 16 additions and 0 deletions

1
.gitignore vendored
View File

@ -12,3 +12,4 @@ lib/Doctrine/DBAL
.idea
vendor/
composer.lock
/tests/Doctrine/Performance/history.db

15
phpbench.json Normal file
View File

@ -0,0 +1,15 @@
{
"bootstrap": "vendor/autoload.php",
"path": "tests/Doctrine/Performance",
"extensions": [
"PhpBench\\Extensions\\Dbal\\DbalExtension",
"PhpBench\\Extensions\\XDebug\\XDebugExtension"
],
"storage": "dbal",
"storage.dbal.connection": {
"driver": "pdo_sqlite",
"path": "tests/Doctrine/Performance/history.db"
}
}