SlideShare ist ein Scribd-Unternehmen logo
1 von 43
Downloaden Sie, um offline zu lesen
Tools
out of the box
with
Magento 2
in
PHPSTORM
Hello!
I am Andra Lungu
Bitbull https://www.bitbull.it/
@iamspringerin
2
“ 3
Are you a rockstar?
And no, I am not asking if you’re in a rock
band...
“ 4
Are you a rockstar?
Not me
“ 5
How many of you are new to
Magneto 2?
“ 6
I would hope everyone
But what about Magento 2 ?
Sorry, I consider myself funny but you can fake laugh
1.
Composer
Dependency Manager
What is it for?
8
What is it for?
Save you time
9
With
Installation made easy
composer create-project
--repository-url=https://repo.magento.com/
magento/project-community-edition magento2
10
Source http://devdocs.magento.com/guides/v2.2/install-gde/bk-install-guide.html
With
Installation made easy
composer create-project
--repository-url=https://repo.magento.com/
magento/project-community-edition magento2
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
11
Source https://getcomposer.org/doc/00-intro.md
With
Installation made easy
composer create-project
--repository-url=https://repo.magento.com/
magento/project-community-edition magento2
Update made easy
composer require
magento/product-community-edition 2.1.9 --no-update
composer update
12
Source http://devdocs.magento.com/guides/v2.2/comp-mgr/cli/cli-upgrade.html
How
Composer is exactly like…. a composer. In this case
Magento 2 is a musical and the packages installed are
the members of the orchestra. You can’t have a live
musical without the orchestra and you can’t have
Magento 2 without its packages.
from digital agency Creare
13
Source https://magento.com/resources/harnessing-power-composer-magento-2
14
Source https://alankent.me/2013/10/19/magento-2-module-dependencies/
15
Source https://gordonlesti.com/magento-2-dependencywheel/
2.
PHPUnit
Testing framework
What is it for?
17
What is it for?
Save you time
18
How
With 4 minutes of your time
( actually less but I am slow)
Tell PHPStorm where to find PHPUnit
{{magento_root}}/vendor/phpunit/phpunit/phpunit
19
Source http://devdocs.magento.com/guides/v2.2/test/unit/unit_test_execution_phpstorm.html
How
With 4 minutes of your time
( actually less but I am slow)
Tell PHPStorm which configuration file to use
{{magento_root}}/dev/tests/unit/phpunit.xml.dist
20
Source http://devdocs.magento.com/guides/v2.2/test/unit/unit_test_execution_phpstorm.html
How
With 4 minutes of your time
( actually less but I am slow)
Press the button Run all tests or run it from terminal
21
Source http://devdocs.magento.com/guides/v2.2/test/unit/unit_test_execution_phpstorm.html
php {{magento_root}}/vendor/phpunit/phpunit/phpunit
--configuration {{magento_root}}/dev/tests/unit/phpunit.xml.dist
How
22
Source http://devdocs.magento.com/guides/v2.2/test/unit/unit_test_execution_phpstorm.html
After 4 + 2 of running tests
minutes of your time
With 1. Learning Magento 2
2. Bug Free code
3. Bugfixing
4. And avoid this….
23
Avoid
24
@note it's impossible to mock an order in Magento 1
* I can't ok? I give up, cost me 1 hour and still didn't get anywhere
* So there you have it, I failed, happy now?!
* If you're looking for me I'll be in a corner crying and wishing for Magento 2
Anonymous Source
3.
PHPCS
PHP Code Sniffer
What is it for?
Lose
Save you time
26
How
With 2 minutes of your time
Tell PHPStorm where to find PHPCodesniffer
{{magento_root}}/vendor/bin/phpcs
27
Source http://devdocs.magento.com/guides/v2.2/coding-standards/code-standard-sniffers.html
How
With 2 minutes of your time
Tell PHPStorm where to find ruleset.xml
{{magento_root}}/dev/tests/static/framework/Magento/
28
Source http://devdocs.magento.com/guides/v2.2/coding-standards/code-standard-sniffers.html
29
After 2 minutes of your time
You’ll have your personal teacher and your pair programmer.
30
Source http://devdocs.magento.com/guides/v2.2/coding-standards/code-standard-sniffers.html
With
1. Improve your knowledge of PHP
2. Improve your coding style
3. Enforce a standard inside your team
4. Bugfixing
31
Quiz
time
32
HEADERS ALREADY SENT
Anyone?
( except Marius that is b*tching positively)
Quiz
time
HEADERS ALREADY SENT
Anyone?
PSR-2 2.2. Files
The closing ?> tag MUST be omitted from files
containing only PHP.
33
Source http://www.php-fig.org/psr/psr-2/
34
Tabs VS Spaces
Anyone?
( except Marius that is b*tching positively)
Source http://www.php-fig.org/psr/psr-2/
Quiz
time
35
Tabs VS Spaces
Anyone?
PSR-2 2.4. Indenting
Code MUST use an indent of 4 spaces, and MUST NOT use tabs for
indenting.
N.b.: helps to avoid problems with diffs, patches, history, and annotations.
Source http://www.php-fig.org/psr/psr-2/
Quiz
time
4.
PHPMD
PHP Mess Detector
How
With 2 minutes of your time
Tell PHPStorm where to find PHPMD
{{magento_root}}/vendor/bin/phpmd
37
How
With 2 minutes of your time
Tell PHPStorm where to find ruleset.xml
{{magento_root}}/dev/tests/static/testsuite/Magento/Tes
t/Php/_files/phpmd/
38
39
After
40
After 2 minutes of your time
Another teacher by your side
With 1. Cleaner code
2. Easier to read
3. Easier to refactor
4. Better Performance
41
Each of us can be a rockstar,
And why not, play in a rock band!
42
Thanks!
Any questions?
You can find me @iamspringerin & andra.lungu@bitbull.it
43

Weitere ähnliche Inhalte

Ähnlich wie Tools out of the box with Magento 2 in PHPSTORM

Loadays managing my sql with percona toolkit
Loadays managing my sql with percona toolkitLoadays managing my sql with percona toolkit
Loadays managing my sql with percona toolkit
Frederic Descamps
 

Ähnlich wie Tools out of the box with Magento 2 in PHPSTORM (20)

Make implementation of third party elements in magento 2 in 5-times easier
Make implementation of third party elements in magento 2 in 5-times easierMake implementation of third party elements in magento 2 in 5-times easier
Make implementation of third party elements in magento 2 in 5-times easier
 
Magento 2: New and Innovative? - php[world] 2015
Magento 2: New and Innovative? - php[world] 2015Magento 2: New and Innovative? - php[world] 2015
Magento 2: New and Innovative? - php[world] 2015
 
Adding pentaho dashboards to angular 5 applications
Adding pentaho dashboards to angular 5 applicationsAdding pentaho dashboards to angular 5 applications
Adding pentaho dashboards to angular 5 applications
 
Magento 2 Development for PHP Developers
Magento 2 Development for PHP DevelopersMagento 2 Development for PHP Developers
Magento 2 Development for PHP Developers
 
Stanislav Khorunzhyi, "Front-end it like a PRO"
Stanislav Khorunzhyi, "Front-end it like a PRO"Stanislav Khorunzhyi, "Front-end it like a PRO"
Stanislav Khorunzhyi, "Front-end it like a PRO"
 
New Era of Plugin Development in WordPress
New Era of Plugin Development in WordPressNew Era of Plugin Development in WordPress
New Era of Plugin Development in WordPress
 
MidwestPHP - Getting Started with Magento 2
MidwestPHP - Getting Started with Magento 2MidwestPHP - Getting Started with Magento 2
MidwestPHP - Getting Started with Magento 2
 
How to steal bitcoin 4.0 2022.pdf
How to steal bitcoin 4.0 2022.pdfHow to steal bitcoin 4.0 2022.pdf
How to steal bitcoin 4.0 2022.pdf
 
Magento 2 + composer
Magento 2 + composerMagento 2 + composer
Magento 2 + composer
 
Search Engine Spiders
Search Engine SpidersSearch Engine Spiders
Search Engine Spiders
 
A Continuous Packaging Pipeline
A Continuous Packaging PipelineA Continuous Packaging Pipeline
A Continuous Packaging Pipeline
 
Long life to vagrant… Vagrant is dead
Long life to vagrant… Vagrant is deadLong life to vagrant… Vagrant is dead
Long life to vagrant… Vagrant is dead
 
Magento 2 Google Invisible Recaptcha
Magento 2 Google Invisible RecaptchaMagento 2 Google Invisible Recaptcha
Magento 2 Google Invisible Recaptcha
 
AMKSS Career Conference 2018: Software Engineering
AMKSS Career Conference 2018: Software EngineeringAMKSS Career Conference 2018: Software Engineering
AMKSS Career Conference 2018: Software Engineering
 
Contribution Day Guide - MM19JP
Contribution Day Guide - MM19JPContribution Day Guide - MM19JP
Contribution Day Guide - MM19JP
 
Loadays managing my sql with percona toolkit
Loadays managing my sql with percona toolkitLoadays managing my sql with percona toolkit
Loadays managing my sql with percona toolkit
 
BEGINNERS’ GUIDE TO MAGENTO PLUGINS, EXTENSIONS, MODULES
BEGINNERS’ GUIDE TO MAGENTO PLUGINS, EXTENSIONS, MODULESBEGINNERS’ GUIDE TO MAGENTO PLUGINS, EXTENSIONS, MODULES
BEGINNERS’ GUIDE TO MAGENTO PLUGINS, EXTENSIONS, MODULES
 
Magento 2 Spam and Bot Blocker
Magento 2 Spam and Bot BlockerMagento 2 Spam and Bot Blocker
Magento 2 Spam and Bot Blocker
 
Magento done right - PHP UK 2016
Magento done right  - PHP UK 2016Magento done right  - PHP UK 2016
Magento done right - PHP UK 2016
 
Magento 2 development
Magento 2 developmentMagento 2 development
Magento 2 development
 

Kürzlich hochgeladen

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Kürzlich hochgeladen (20)

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 

Tools out of the box with Magento 2 in PHPSTORM