Skip to content

Commit da15118

Browse files
committed
asdf
1 parent 9050ade commit da15118

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,16 @@ jobs:
3434
coverage: "none"
3535
php-version: "${{ matrix.php-version }}"
3636

37+
- name: "Install Xdebug"
38+
run: |
39+
pecl install xdebug
40+
echo "zend_extension=$(php -r 'echo ini_get(\"extension_dir\");')/xdebug.so" > $GITHUB_WORKSPACE/xdebug.ini
41+
3742
- name: "Composer install"
3843
uses: "ramsey/composer-install@v2"
3944
with:
4045
dependency-versions: "${{ matrix.dependency-versions }}"
4146
composer-options: "--prefer-dist --no-progress"
4247

43-
- name: "RUn tests"
48+
- name: "Run tests"
4449
run: "composer coverage-html"

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"phpstan/phpstan": "^2",
2020
"phpunit/php-code-coverage": "^10 || ^11 || ^12",
2121
"phpunit/phpunit": "^10 || ^11 || ^12",
22-
"vimeo/psalm": "^6"
22+
"vimeo/psalm": "^6",
23+
"xdebug/xdebug": "^3"
2324
},
2425
"suggest": {
2526
"micro/autowire": "Autowire helper for dependency injection"

0 commit comments

Comments
 (0)