Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit fb7c9b7

Browse files
committed
Merge branch 'hotfix/57'
2 parents 187eba9 + ff10cc3 commit fb7c9b7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+758
-962
lines changed

.php_cs

-45
This file was deleted.

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ All notable changes to this project will be documented in this file, in reverse
66

77
### Added
88

9-
- Nothing.
9+
- [#57](https://github.com/zendframework/zend-ldap/pull/57) adds support for new
10+
coding-standards.
1011

1112
### Deprecated
1213

CONTRIBUTING.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -102,24 +102,24 @@ When done, you can halt the LDAP server using `vagrant halt`.
102102
103103
## Running Coding Standards Checks
104104
105-
This component uses [php-cs-fixer](http://cs.sensiolabs.org/) for coding
105+
This component uses [phpcs](https://github.com/squizlabs/PHP_CodeSniffer) for coding
106106
standards checks, and provides configuration for our selected checks.
107-
`php-cs-fixer` is installed by default via Composer.
107+
`phpcs` is installed by default via Composer.
108108
109109
To run checks only:
110110
111111
```console
112-
$ ./vendor/bin/php-cs-fixer fix . -v --diff --dry-run --config-file=.php_cs
112+
$ composer cs-check
113113
```
114114
115-
To have `php-cs-fixer` attempt to fix problems for you, omit the `--dry-run`
116-
flag:
115+
`phpcs` also includes a tool for fixing most CS violations, `phpcbf`:
116+
117117

118118
```console
119-
$ ./vendor/bin/php-cs-fixer fix . -v --diff --config-file=.php_cs
119+
$ composer cs-fix
120120
```
121121

122-
If you allow php-cs-fixer to fix CS issues, please re-run the tests to ensure
122+
If you allow `phpcbf` to fix CS issues, please re-run the tests to ensure
123123
they pass, and make sure you add and commit the changes after verification.
124124

125125
## Recommended Workflow for Contributions

composer.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@
2020
"zendframework/zend-config": "^2.5",
2121
"zendframework/zend-eventmanager": "^2.6.3 || ^3.0.1",
2222
"zendframework/zend-stdlib": "^2.7 || ^3.0",
23-
"fabpot/php-cs-fixer": "1.7.*",
2423
"phpunit/PHPUnit": "^4.5",
25-
"php-mock/php-mock-phpunit": "~0.3"
24+
"php-mock/php-mock-phpunit": "~0.3",
25+
"zendframework/zend-coding-standard": "~1.0.0",
26+
"phpunit/phpunit": "^4.6"
2627
},
2728
"suggest": {
2829
"zendframework/zend-eventmanager": "Zend\\EventManager component"
@@ -45,10 +46,10 @@
4546
"@cs-check",
4647
"@test"
4748
],
48-
"upload-coverage": "coveralls -v",
49-
"cs-check": "php-cs-fixer --version && php-cs-fixer fix -v --diff --dry-run",
50-
"cs-fix": "php-cs-fixer fix -v",
51-
"test": "phpunit",
52-
"test-coverage": "phpunit --coverage-clover clover.xml"
49+
"cs-check": "phpcs",
50+
"cs-fix": "phpcbf",
51+
"test": "phpunit --colors=always",
52+
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
53+
"upload-coverage": "coveralls -v"
5354
}
5455
}

0 commit comments

Comments
 (0)