Skip to content
Merged
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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,24 +48,24 @@ Development
For easy development you can use the `Docker`.

```bash
$ docker build -t ruler .
$ docker run -it -v $(pwd):/code --name ruler ruler bash
docker build -t ruler .
docker run -it -v $(pwd):/code --name ruler ruler bash

```

After success run and attach to container you must install vendors:

```bash
$ composer update
composer update
```

Before create the PR or merge into develop, please run next commands for validate code:

```bash
$ ./bin/phpunit
./bin/phpunit

$ ./bin/phpcs --config-set show_warnings 0
$ ./bin/phpcs --standard=vendor/escapestudios/symfony2-coding-standard/Symfony/ src/
$ ./bin/phpcs --standard=tests/phpcs-ruleset.xml tests/
./bin/phpcs --config-set show_warnings 0
./bin/phpcs --standard=vendor/escapestudios/symfony2-coding-standard/Symfony/ src/
./bin/phpcs --standard=tests/phpcs-ruleset.xml tests/

```
Loading