Skip to content

Commit e1d486e

Browse files
2 parents bea5df2 + a2eb45d commit e1d486e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ jobs:
4141
rm -f installer expected
4242
mv composer.phar /usr/local/bin/composer
4343
44+
- name: Install Xdebug
45+
run: |
46+
pecl install xdebug
47+
docker-php-ext-enable xdebug
48+
4449
- name: Checkout repository
4550
uses: actions/checkout@v2
4651
with:

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "wikibase-solutions/php-cypher-dsl",
3-
"description": "A PHP DSL for the Cypher Query Language",
4-
"version": "2.8.0",
3+
"description": "A query builder for the Cypher query language written in PHP",
54
"type": "library",
65
"keywords": [
76
"neo4j",
@@ -54,7 +53,7 @@
5453
},
5554
"scripts": {
5655
"test": "phpunit tests/",
57-
"infect": "XDEBUG_MODE=coverage infection --threads=2"
56+
"infect": "XDEBUG_MODE=coverage infection --show-mutations"
5857
},
5958
"minimum-stability": "stable",
6059
"prefer-stable": true

0 commit comments

Comments
 (0)