Skip to content

Commit ebe6b53

Browse files
committed
Update README
1 parent 63cb412 commit ebe6b53

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -258,19 +258,19 @@ sudo docker run --rm -v $(pwd)/web/app:/app composer update
258258
### Generating PHP API documentation
259259

260260
```sh
261-
sudo docker-compose exec php ./app/vendor/bin/apigen generate app/src --destination app/doc
261+
sudo docker-compose exec -T php ./app/vendor/bin/apigen generate app/src --destination ./app/doc
262262
```
263263

264264
### Testing PHP application with PHPUnit
265265

266266
```sh
267-
sudo docker-compose exec php ./app/vendor/bin/phpunit --colors=always --configuration app/
267+
sudo docker-compose exec -T php ./app/vendor/bin/phpunit --colors=always --configuration ./app/
268268
```
269269

270270
### Checking the standard code with [PSR2](http://www.php-fig.org/psr/psr-2/)
271271

272272
```sh
273-
sudo docker-compose exec php ./app/vendor/bin/phpcs --standard=PSR2 app/src
273+
sudo docker-compose exec -T php ./app/vendor/bin/phpcs --standard=PSR2 ./app/src
274274
```
275275

276276
### Checking installed PHP extensions

0 commit comments

Comments
 (0)