Skip to content

Commit

Permalink
Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenekdrahos committed Oct 8, 2016
1 parent 314d0b1 commit 338f723
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@

# Changelog

## v1.7.0

* [#22](https://github.com/EdgedesignCZ/phpqa/issues/22) Support Symfony3 components
* [#28](https://github.com/EdgedesignCZ/phpqa/pull/28) Add PHP 7.1 support, circle.ci example

## v1.6.0

* [#25](https://github.com/EdgedesignCZ/phpqa/issues/25) phpcs's custom path to standard isn't relative to .phpqa.yml, but current directory
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ Do you have problems with dependencies
Check if you can [install phpqa globally](#circleci---artifacts--global-installation).
Or install dev-master versions of `sebastian/phpcpd` and `henrikbjorn/lurker`:

```
```json
{
"require-dev": {
"edgedesign/phpqa": "dev-master",
"edgedesign/phpqa": ">=1.7",
"henrikbjorn/lurker": "dev-master",
"sebastian/phpcpd": "dev-master"
}
Expand Down Expand Up @@ -137,7 +137,7 @@ Let's say your [Travis CI](https://docs.travis-ci.com/user/customizing-the-build
or [Circle CI](https://circleci.com/docs/manually/#overview) build should fail when new error is introduced.
Define number of allowed errors for each tools and watch the build:

```
```bash
phpqa --report --tools phpcs:0,phpmd:0,phpcpd:0,phpmetrics,phploc,pdepend
```

Expand Down Expand Up @@ -191,7 +191,7 @@ phpqa --report
Define custom templates if you don't like [default templates](/app/report).
You have to define path to `xsl` files in your [`.phpqa.yml`](#advanced-configuration---phpqayml):

```
```yaml
# use different template for PHPMD, use default for other tools
report:
phpmd: my-templates/phpmd.xsl
Expand Down Expand Up @@ -289,9 +289,9 @@ public function ciPhpqa()
phpqa --verbose --report --analyzedDir ./ --buildDir ./var/CI --ignoredDirs=bin,log,temp,var,vendor,www
```

## Circle.ci - artifacts + global installation
### Circle.ci - artifacts + global installation

```
```yaml
machine:
php:
version: 7.0.4
Expand Down

0 comments on commit 338f723

Please sign in to comment.