Skip to content

Commit

Permalink
Merge pull request #72 from phpDocumentor/strict-types
Browse files Browse the repository at this point in the history
Strict types
  • Loading branch information
jaapio committed Jul 8, 2019
2 parents 48a0c8f + 81dea8e commit c0d13f9
Show file tree
Hide file tree
Showing 39 changed files with 1,046 additions and 891 deletions.
11 changes: 9 additions & 2 deletions .github/main.workflow
Expand Up @@ -2,6 +2,7 @@ workflow "Qa workflow" {
on = "push"
resolves = [
"PHPStan",
"Psalm",
"composer-require-checker",
"Code style check",
]
Expand All @@ -28,8 +29,14 @@ action "composer-require-checker" {
}

action "Code style check" {
uses = "docker://oskarstark/phpcs-ga"
uses = "docker://phpdoc/phpcs-ga:master"
secrets = ["GITHUB_TOKEN"]
args = "-d memory_limit=1024M -s"
needs = ["composer"]
}

action "Psalm" {
uses = "docker://mickaelandrieu/psalm-ga"
secrets = ["GITHUB_TOKEN"]
args = "-d memory_limit=1024M"
needs = ["composer"]
}
7 changes: 3 additions & 4 deletions composer.json
Expand Up @@ -9,15 +9,14 @@
"email": "me@mikevanriel.com"
}
],
"minimum-stability": "beta",
"require": {
"php": ">=7.1",
"php": "^7.1",
"phpdocumentor/reflection-common": "^2.0"
},
"require-dev": {
"mockery/mockery": "~1",
"phpunit/phpunit": "~6",
"ext-tokenizer": "^7.1"
"ext-tokenizer": "^7.1",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit c0d13f9

Please sign in to comment.