Skip to content
Closed
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
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ RUN composer global require \
behat/behat \
phploc/phploc \
phpstan/phpstan \
vimeo/psalm \
icanhazstring/composer-unused > /dev/null 2>&1

RUN ln -s /root/.composer/vendor/bin/* /usr/local/bin/ > /dev/null 2>&1
31 changes: 19 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,19 @@ Available on Docker Hub at [devdrops/php-toolbox](https://hub.docker.com/r/devdr

## Features

|TOOL|RELEASE|
|:---|:------|
|PHP|PHP 7.3.3 (cli) (built: Mar 9 2019 00:27:53) ( NTS )|
|Composer|Composer version 1.8.4 2019-02-11 10:52:10|
|phpunit/phpunit|PHPUnit 8.0.5 by Sebastian Bergmann and contributors.|
|squizlabs/php_codesniffer|PHP_CodeSniffer version 3.4.1 (stable) by Squiz (http://www.squiz.net)|
|friendsofphp/php-cs-fixer|PHP CS Fixer 2.14.2 Sunrise by Fabien Potencier and Dariusz Ruminski|
|phpmd/phpmd|PHPMD 2.6.0|
|behat/behat|behat 3.5.0|
|phploc/phploc|phploc 5.0.0 by Sebastian Bergmann.|
|phpstan/phpstan|PHPStan - PHP Static Analysis Tool 0.11.4|
|icanhazstring/composer-unused|0.1.0|
| TOOL | RELEASE
| :--- | :------
| PHP | PHP 7.3.3 (cli) (built: Mar 9 2019 00:27:53) ( NTS )
| Composer | Composer version 1.8.4 2019-02-11 10:52:10
| phpunit/phpunit | PHPUnit 8.0.5 by Sebastian Bergmann and contributors.
| squizlabs/php_codesniffer | PHP_CodeSniffer version 3.4.1 (stable) by Squiz (http://www.squiz.net)
| friendsofphp/php-cs-fixer | PHP CS Fixer 2.14.2 Sunrise by Fabien Potencier and Dariusz Ruminski
| phpmd/phpmd | PHPMD 2.6.0
| behat/behat | behat 3.5.0
| phploc/phploc | phploc 5.0.0 by Sebastian Bergmann.
| phpstan/phpstan | PHPStan - PHP Static Analysis Tool 0.11.4
| vimeo/psalm | A static analysis tool for finding errors in PHP applications 3.4.5
| icanhazstring/composer-unused| 0.1.0

## Install

Expand Down Expand Up @@ -115,3 +116,9 @@ docker run -ti --rm -v $(pwd):/code -w /code devdrops/php-toolbox:latest phploc
```bash
docker run -ti --rm -v $(pwd):/code -w /code devdrops/php-toolbox:latest phpstan --version
```

### psalm

```bash
docker run -ti --rm -v $(pwd):/code -w /code devdrops/php-toolbox:latest phpsalm --version
```