Skip to content

Commit

Permalink
Merge branch 'fix/tags' of github.com:violinist-dev/violinist-config …
Browse files Browse the repository at this point in the history
…into fix/tags
  • Loading branch information
eiriksm committed Jan 6, 2023
2 parents bf81ced + 5a1023c commit 142d811
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -11,11 +11,12 @@ jobs:
fail-fast: false
matrix:
php-version:
- "7.0"
- "7.1"
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- "8.2"
steps:
- name: Dump matrix context
env:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -24,7 +24,7 @@
"lint": "phpcs -p -n"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.4",
"php-coveralls/php-coveralls": "^2.4"
}
Expand Down
3 changes: 2 additions & 1 deletion src/Config.php
Expand Up @@ -79,7 +79,8 @@ public function getTags() : array
return $this->config->tags;
}

public function getTagsSecurity() : array {
public function getTagsSecurity() : array
{
if (!is_array($this->config->tags_security)) {
return [];
}
Expand Down

0 comments on commit 142d811

Please sign in to comment.