1
0
mirror of https://github.com/flarum/core.git synced 2025-08-31 03:50:15 +02:00

Setup Composer commands for testing and setup

This commit is contained in:
Franz Liedke
2019-01-30 21:16:25 +01:00
parent cf746079ed
commit 5556df54f9
2 changed files with 62 additions and 0 deletions

View File

@@ -86,5 +86,14 @@
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"scripts": {
"test": [
"@test:unit",
"@test:integration"
],
"test:unit": "phpunit -c tests/phpunit.unit.xml",
"test:integration": "phpunit -c tests/phpunit.integration.xml",
"test:setup": "@php tests/integration/setup.php"
}
}