Skip to content

Updates dependencies #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 13, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ dist: trusty
sudo: required

php:
- 7.2
- 7.1
- 7.0
- 5.6
Expand All @@ -26,7 +27,7 @@ before_install:
- npm set progress false

install:
- pip install yamllint
- sudo pip install yamllint
- if ! shellcheck --version ; then
curl -sSL "${SHELLCHECK_URL}" | tar --exclude 'SHA256SUMS' --strip-components=1 -C "${HOME}/bin" -xjf -;
fi
Expand All @@ -51,7 +52,6 @@ script:
- ./vendor/bin/parallel-lint -h
- ./vendor/bin/paratest --version
- ./vendor/bin/pdepend --version
- ./vendor/bin/phing -v
- ./vendor/bin/phinx --version
- ./vendor/bin/php-cs-fixer --version
- ./vendor/bin/phpcbf --version
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ You'll get the following tools by depending on this package:
### Test Related

- **[Codeception][codeception]**: Modern full-stack testing framework for PHP
- **[Ocular][ocular]**: CLI for uploading external code coverage data to Scrutinizer
- **[ParaTest][paratest]**: Parallel testing for PHPUnit
- **[PHPUnit][phpunit]**: Testing framework for PHP

Expand All @@ -50,7 +49,6 @@ Other packages that you'll get:
- **[Composer Versions Check][versions-check]**: Checks if packages are up to date to last major versions after update
- **[Deployer][deployer]**: Deployment tool for PHP
- **[Deployer Recipes][deployer-recipes]**: Third party recipes to integrate with Deployer
- **[Phing][phing]**: Phing is a PHP project build system or build tool based on ​Apache Ant
- **[Phinx][phinx]**: Phinx makes it ridiculously easy to manage the database migrations for your PHP app
- **[PHP_CodeSniffer Composer Installer][phpcs-composer-installer]**: For installing PHP_CodeSniffer coding standards
- **[PHPCompatibility][phpcompatibility]**: PHP Compatibility checks for PHP_CodeSniffer
Expand Down Expand Up @@ -219,14 +217,12 @@ THE SOFTWARE.
[license-shield]: https://img.shields.io/github/license/dealerdirect/php-qa-tools.svg
[maintenance-shield]: https://img.shields.io/maintenance/yes/2017.svg
[mockery]: https://github.com/padraic/mockery
[ocular]: https://github.com/scrutinizer-ci/ocular
[packagist-shield]: https://img.shields.io/packagist/dt/dealerdirect/qa-tools.svg
[packagist-version-shield]: https://img.shields.io/packagist/v/dealerdirect/qa-tools.svg
[packagist-version]: https://packagist.org/packages/dealerdirect/qa-tools
[packagist]: https://packagist.org/packages/dealerdirect/qa-tools
[paratest]: https://github.com/brianium/paratest
[pdepend]: https://github.com/pdepend/pdepend
[phing]:https://www.phing.info/
[phinx]: https://phinx.org
[php-codebrowser]: https://github.com/mayflower/PHP_CodeBrowser
[php-parallel-lint]: https://github.com/JakubOnderka/PHP-Parallel-Lint
Expand Down
38 changes: 18 additions & 20 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,29 +25,27 @@
"require": {
"php": ">=5.6,<8.0-dev",
"brianium/paratest": ">=0.14.0,<1.0.0",
"codeception/codeception": "^2.2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.0",
"deployer/deployer": "^4.0.0",
"deployer/recipes": "^4.0.0",
"friendsofphp/php-cs-fixer": "^2.0.0",
"codeception/codeception": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4",
"deployer/deployer": "^4.3",
"deployer/recipes": "^4.0",
"friendsofphp/php-cs-fixer": "^2.8",
"hirak/prestissimo": "^0.3",
"jakub-onderka/php-parallel-lint": ">=0.9.1,<1.0.0",
"pdepend/pdepend": "^2.2.0",
"phing/phing": "^2.0.0",
"phploc/phploc": "^3.0.1",
"phpmd/phpmd": "^2.2.0",
"phpmetrics/phpmetrics": "^2.0.0",
"pdepend/pdepend": "^2.5",
"phploc/phploc": "^4.0",
"phpmd/phpmd": "^2.6.0",
"phpmetrics/phpmetrics": "^2.3.2",
"phpro/grumphp": ">=0.11.0,<1.0.0,!=0.11.4",
"phpunit/phpunit": "^5.5.0",
"robmorgan/phinx": "^0.8.0",
"scheb/tombstone-analyzer": "^0.3.0",
"scrutinizer/ocular": "^1.3",
"sebastian/phpcpd": "^3.0.0",
"seld/jsonlint": "^1.4.0",
"sensiolabs/security-checker": "^4.0",
"sllh/composer-versions-check": "^2.0.0",
"squizlabs/php_codesniffer": "^3.0.2",
"wimg/php-compatibility": "^8.0.0"
"phpunit/phpunit": "^5.7",
"robmorgan/phinx": "^0.9",
"scheb/tombstone-analyzer": "^0.3",
"sebastian/phpcpd": "^3.0",
"seld/jsonlint": "^1.6",
"sensiolabs/security-checker": "^4.1",
"sllh/composer-versions-check": "^2.0",
"squizlabs/php_codesniffer": "^3.2",
"wimg/php-compatibility": "^8.0"
},
"suggest": {
"apigen/apigen": "Smart and Readable Documentation for your PHP project.",
Expand Down