Joao
- 活动总数 23
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 4
- 订阅数 4
-
创建于 Add "Run Configurarion" option to get script from composer
My composer.json has the section: "scripts": { "test": "./vendor/bin/phpunit", "migrate": "Builder\\Scripts::migrate", "build": "Builder\\Scripts::build", "restdocs": "Builder\\Scripts::genRest... -
创建于 PHPCS and PHPMD does not showed on "Inspection Toolbox"
I successfully installed the PHPCS and PHPMD inspection in my PHPStorm IDE over the remote PHP Interpreter installed in a Docker Container. This is working very well. When I move the mouse over the... -
创建于 Using a Docker Container as a PHP Interpreter
Hi, I created a named in '/usr/local/bin/php7' with these contents: --- #!/bin/bashdocker run -it --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -u $UID:${GROUPS[0]} byjg/php7 php "$@" --- After ...