Skip to content

Commit

Permalink
Fix composer install (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
paladox authored Feb 7, 2025
1 parent 4eda342 commit 9c9e258
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,18 @@
}
},
"config": {
"process-timeout": 0
"process-timeout": 0,
"allow-plugins": {
"composer/installers": true
}
},
"scripts": {
"test": [
"@phpunit"
],
"test-coverage": [
"@phpunit-coverage"
],
"test": [
"@phpunit"
],
"test-coverage": [
"@phpunit-coverage"
],
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
"phpunit-coverage": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist --testdox --coverage-text --coverage-html coverage/php --coverage-clover coverage/php/coverage.xml",
"unit": [
Expand Down

0 comments on commit 9c9e258

Please sign in to comment.