Skip to content

Commit

Permalink
try to make php work
Browse files Browse the repository at this point in the history
  • Loading branch information
mklose committed Jan 15, 2020
1 parent 6d0fbe1 commit 90fccea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:

- name: Run phpunit
working-directory: php
run: phpunit tests --filter testNotFaling
run: phpunit --bootstrap vendor/autoload.php tests --filter testNotFailing
2 changes: 1 addition & 1 deletion php/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ For PHP 7.1 or above just run:
To run the tests just run:

```
phpunit tests
phpunit --bootstrap vendor/autoload.php tests --filter testNotFailing
```
You need PHP 7.1 or above.

Expand Down
3 changes: 2 additions & 1 deletion php/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
}
],
"require": {
"php": "^7.1.3"
"php": "^7.1.3",
"phpunit/phpunit": "^8"
},
"require-dev": {
"mockery/mockery": "dev-master"
Expand Down

0 comments on commit 90fccea

Please sign in to comment.