Joao
- Total activity 23
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 4
-
Created 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... -
Created 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... -
Created 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 ...