Skip to content

Commit

Permalink
Merge branch 'release/3.0.20'
Browse files Browse the repository at this point in the history
  • Loading branch information
stmh committed Jul 7, 2019
2 parents 2bbda76 + 221123f commit 0be32a0
Show file tree
Hide file tree
Showing 39 changed files with 1,292 additions and 244 deletions.
12 changes: 12 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,17 @@
files: \.php$
args:
- --standard=PSR2 -p

- repo: local
hooks:
- id: phpstan
name: "PHPStan"
language: script
files: ^src/(.*)\.php$
entry: ./vendor/bin/phpstan analyze --no-progress --error-format raw --level 4

- repo: https://github.com/digitalpulp/pre-commit-php.git
sha: 1.3.0
hooks:
- id: php-unit
files: \.php$
11 changes: 11 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 3.0.20 / 2019-07-07

### Fixed

* Show error-message if shell could not be initialized. Fixes #54
* Satisfy phpstan and add it as a new precommit-hook
* Fix drush and other commands when using local shell provider
* Prevent filename collision when running docker copySSHKeys, fixes #52
* Fix issue with special characters in the pw
* Use latest version of stecman/symfony-console-completion

## 3.0.19 / 2019-06-25

### Fixed
Expand Down
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"symfony/flex": "^1.1",
"symfony/dotenv": "^2.8|^3|^4.1",
"ext-json": "*",
"stecman/symfony-console-completion": "^0.9.0",
"stecman/symfony-console-completion": "^0.10.0",
"symfony/finder": "^4.1",
"thibaud-dauce/mattermost-php": "^1.2",
"twig/twig": "^2.5",
Expand All @@ -29,7 +29,9 @@
},
"require-dev": {
"symfony/phpunit-bridge": "^2.8|^3|^4.1",
"phpunit/phpunit": "^7.3"
"phpunit/phpunit": "^7.3",
"phpstan/phpstan": "^0.11.9",
"phpstan/phpstan-symfony": "^0.11.6"
},
"autoload": {
"psr-4": {"Phabalicious\\": "src/"}
Expand Down
Loading

0 comments on commit 0be32a0

Please sign in to comment.