How to use GrumPHP with Magento2?
I would like to use GrumPHP with my Magento 2, to be able to run simple verifications during my development, how can I do that?
magento2 php development
add a comment |
I would like to use GrumPHP with my Magento 2, to be able to run simple verifications during my development, how can I do that?
magento2 php development
add a comment |
I would like to use GrumPHP with my Magento 2, to be able to run simple verifications during my development, how can I do that?
magento2 php development
I would like to use GrumPHP with my Magento 2, to be able to run simple verifications during my development, how can I do that?
magento2 php development
magento2 php development
asked Oct 12 '18 at 15:08
Rafael Corrêa GomesRafael Corrêa Gomes
4,50923263
4,50923263
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I created this basic tutorial about how to install and use in your Magento 2 project, but to start without a lot of errors I recommend to use this method below.
1 - Run in your Magento 2 root folder via terminal:
composer require symfony/dependency-injection "~3.3.0"
composer require symfony/yaml "~3.3.0"
composer require --dev phpro/grumphp
composer require --dev jakub-onderka/php-parallel-lint
composer update -vvvv
2 - Create this file in your root folder:
parameters:
magento_dir: .
bin_dir: ./vendor/bin
hide_circumvention_tip: true
process_timeout: 120
tasks:
composer:
file: ./composer.json
no_check_all: true
no_check_lock: true
no_check_publish: false
with_dependencies: false
strict: false
git_blacklist:
keywords:
- "die("
- "var_dump("
- "exit;"
- "console.log("
- "ObjectManager::getInstance"
triggered_by: ['php', 'phtml', 'js']
#phpcs:
# standard: "./dev/tests/static/framework/Magento"
# tab_width: 4
#phpmd:
# ruleset: [./dev/tests/static/testsuite/Magento/Test/Php/_files/phpmd/ruleset.xml]
#phpcsfixer: ~
#phpcsfixer2: ~
#phpcpd: ~
phplint:
exclude:
jobs: ~
triggered_by: ['php', 'phtml']
securitychecker: ~
xmllint: ~
References: Integer-net tutorial
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f246307%2fhow-to-use-grumphp-with-magento2%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I created this basic tutorial about how to install and use in your Magento 2 project, but to start without a lot of errors I recommend to use this method below.
1 - Run in your Magento 2 root folder via terminal:
composer require symfony/dependency-injection "~3.3.0"
composer require symfony/yaml "~3.3.0"
composer require --dev phpro/grumphp
composer require --dev jakub-onderka/php-parallel-lint
composer update -vvvv
2 - Create this file in your root folder:
parameters:
magento_dir: .
bin_dir: ./vendor/bin
hide_circumvention_tip: true
process_timeout: 120
tasks:
composer:
file: ./composer.json
no_check_all: true
no_check_lock: true
no_check_publish: false
with_dependencies: false
strict: false
git_blacklist:
keywords:
- "die("
- "var_dump("
- "exit;"
- "console.log("
- "ObjectManager::getInstance"
triggered_by: ['php', 'phtml', 'js']
#phpcs:
# standard: "./dev/tests/static/framework/Magento"
# tab_width: 4
#phpmd:
# ruleset: [./dev/tests/static/testsuite/Magento/Test/Php/_files/phpmd/ruleset.xml]
#phpcsfixer: ~
#phpcsfixer2: ~
#phpcpd: ~
phplint:
exclude:
jobs: ~
triggered_by: ['php', 'phtml']
securitychecker: ~
xmllint: ~
References: Integer-net tutorial
add a comment |
I created this basic tutorial about how to install and use in your Magento 2 project, but to start without a lot of errors I recommend to use this method below.
1 - Run in your Magento 2 root folder via terminal:
composer require symfony/dependency-injection "~3.3.0"
composer require symfony/yaml "~3.3.0"
composer require --dev phpro/grumphp
composer require --dev jakub-onderka/php-parallel-lint
composer update -vvvv
2 - Create this file in your root folder:
parameters:
magento_dir: .
bin_dir: ./vendor/bin
hide_circumvention_tip: true
process_timeout: 120
tasks:
composer:
file: ./composer.json
no_check_all: true
no_check_lock: true
no_check_publish: false
with_dependencies: false
strict: false
git_blacklist:
keywords:
- "die("
- "var_dump("
- "exit;"
- "console.log("
- "ObjectManager::getInstance"
triggered_by: ['php', 'phtml', 'js']
#phpcs:
# standard: "./dev/tests/static/framework/Magento"
# tab_width: 4
#phpmd:
# ruleset: [./dev/tests/static/testsuite/Magento/Test/Php/_files/phpmd/ruleset.xml]
#phpcsfixer: ~
#phpcsfixer2: ~
#phpcpd: ~
phplint:
exclude:
jobs: ~
triggered_by: ['php', 'phtml']
securitychecker: ~
xmllint: ~
References: Integer-net tutorial
add a comment |
I created this basic tutorial about how to install and use in your Magento 2 project, but to start without a lot of errors I recommend to use this method below.
1 - Run in your Magento 2 root folder via terminal:
composer require symfony/dependency-injection "~3.3.0"
composer require symfony/yaml "~3.3.0"
composer require --dev phpro/grumphp
composer require --dev jakub-onderka/php-parallel-lint
composer update -vvvv
2 - Create this file in your root folder:
parameters:
magento_dir: .
bin_dir: ./vendor/bin
hide_circumvention_tip: true
process_timeout: 120
tasks:
composer:
file: ./composer.json
no_check_all: true
no_check_lock: true
no_check_publish: false
with_dependencies: false
strict: false
git_blacklist:
keywords:
- "die("
- "var_dump("
- "exit;"
- "console.log("
- "ObjectManager::getInstance"
triggered_by: ['php', 'phtml', 'js']
#phpcs:
# standard: "./dev/tests/static/framework/Magento"
# tab_width: 4
#phpmd:
# ruleset: [./dev/tests/static/testsuite/Magento/Test/Php/_files/phpmd/ruleset.xml]
#phpcsfixer: ~
#phpcsfixer2: ~
#phpcpd: ~
phplint:
exclude:
jobs: ~
triggered_by: ['php', 'phtml']
securitychecker: ~
xmllint: ~
References: Integer-net tutorial
I created this basic tutorial about how to install and use in your Magento 2 project, but to start without a lot of errors I recommend to use this method below.
1 - Run in your Magento 2 root folder via terminal:
composer require symfony/dependency-injection "~3.3.0"
composer require symfony/yaml "~3.3.0"
composer require --dev phpro/grumphp
composer require --dev jakub-onderka/php-parallel-lint
composer update -vvvv
2 - Create this file in your root folder:
parameters:
magento_dir: .
bin_dir: ./vendor/bin
hide_circumvention_tip: true
process_timeout: 120
tasks:
composer:
file: ./composer.json
no_check_all: true
no_check_lock: true
no_check_publish: false
with_dependencies: false
strict: false
git_blacklist:
keywords:
- "die("
- "var_dump("
- "exit;"
- "console.log("
- "ObjectManager::getInstance"
triggered_by: ['php', 'phtml', 'js']
#phpcs:
# standard: "./dev/tests/static/framework/Magento"
# tab_width: 4
#phpmd:
# ruleset: [./dev/tests/static/testsuite/Magento/Test/Php/_files/phpmd/ruleset.xml]
#phpcsfixer: ~
#phpcsfixer2: ~
#phpcpd: ~
phplint:
exclude:
jobs: ~
triggered_by: ['php', 'phtml']
securitychecker: ~
xmllint: ~
References: Integer-net tutorial
edited 1 min ago
answered Oct 12 '18 at 15:08
Rafael Corrêa GomesRafael Corrêa Gomes
4,50923263
4,50923263
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f246307%2fhow-to-use-grumphp-with-magento2%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown