SlideShare uma empresa Scribd logo
1 de 23
Presenter: Tanmaya Biswal, Mindfire Solutions
Date: 03/02/2015
Agenda
Presenter: Tanmaya Biswal, Mindfire
Solutions
Why PhpStorm ?
What’s new in PhpStorm 8 ?
Frameworks Support
Code Formatting
Code Quality Analysis
Easy Code Navigation & Search
Easy XDebugging
JavaScript Debugging
HTML & CSS Editor support
Version Control Support
Working with Remote PHP Interpreters
Tips and Tricks
Live template
How to Install PhpStorm ?
Why PhpStorm ?

Smart PHP Code Editor

Code Quality Analysis

Development Environment

HTML/CSS/JavaScript Editor

Debugging and Testing

Cross-platform Experience
Presenter: Tanmaya Biswal, Mindfire
Solutions
Popularity
Presenter: Tanmaya Biswal, Mindfire
Solutions
What’s new in PhpStorm 8 ?

Laravel’s Blade templates
 BDD for PHP using Behat

Full WordPress support

Remote PHP interpreters

Advanced AngularJS support

IDE Improvements

Multiple Carets and Selections

Work with individual files without creating a project
Presenter: Tanmaya Biswal, Mindfire
Solutions
Frameworks Support

The existing support of template engines and
command-line tools is boosted with a more high-
level feature: an MVC view for Symfony2 & Yii
frameworks.

Plugins are also available bringing various
framework-specific features, such as code
completion, navigation, type inference and other
IDE best practices for various PHP frameworks
(Symfony, Drupal, Magento, Zend etc.).
Presenter: Tanmaya Biswal, Mindfire
Solutions
Code Formatting

Code formatter with code style configuration and
other features help you write neat code that's
easy to support.(Project Settings | Editor | Code Style |
PHP)

PhpStorm contains built-in PSR1/PSR2,
Symfony2, Zend, Drupal & other standards
compliant code formatting.
Presenter: Tanmaya Biswal, Mindfire
Solutions
Code Quality Analysis

Hundreds of code inspections verify your code as
you type and inspect the whole project for
possible errors or code smells.

Quick-fixes for most inspections make it easy to
fix or improve the code instantly. Alt+Enter shows
appropriate options for each inspection.

Ex:
 PHP Code Sniffer & Mess Detector

Smart Duplicated Code Detector
Presenter: Tanmaya Biswal, Mindfire
Solutions
Easy Code Navigation &
Search

Navigate to Class: Ctrl+N (CMD+O on Mac OS X)

Navigate to File: Ctrl+Shift+N (Shift+Cmd+O on
Mac OS X)

Navigate to Symbol: Ctrl+Shift+Alt+N
(Alt+CMD+O on Mac OS X)

Search Everywhere: (Double Shift)

Navigate to Declaration: Ctrl+Click (CMD+Click
on Mac OS X)

Next / Previous Method: Alt+Down / Up

Recent Files: Ctrl+E (or CMD+E on Mac OS X)

Navigate to Last Edit Location:
Ctrl+Shift+Backspace (Shift+CMD+Delete on Mac
Presenter: Tanmaya Biswal, Mindfire
Solutions
Easy XDebugging
 Download and install the Xdebug

Enabling XDebug integration with the PHP engine

[xdebug]

zend_extension="/usr/lib/php5/20121212/xdebug.
so"

xdebug.remote_enable=1

xdebug.remote_autostart=1

xdebug.default_enable=1

xdebug.remote_handler=dbgp

xdebug.remote_mode=req

xdebug.remote_host=localhost

xdebug.remote_port=9000

xdebug.idekey="PHPSTORM"Presenter: Tanmaya Biswal, Mindfire
Solutions
JavaScript Debugging

Install the JetBrains Chrome extension

Set a Breakpoints

Start a Debugging Session

Debugging!

Stepping through Code
Presenter: Tanmaya Biswal, Mindfire
Solutions
HTML editor support
1. Editing HTML using PhpStorm
2. Open in Browser
3. Working with Live Edit

HTML is quite verbose. To write HTML code
faster and more efficient, PhpStorm lets us use
Emmet, which provides a shorthand for lots of
things.

For example, we can type p>lorem and hit TAB
to expand into a paragraph with Lorem Ipsum
text.

A more advanced example would be
div#container>div.span4*3>img.thumbnPresenter: Tanmaya Biswal, Mindfire
Solutions
CSS editor support
Just like when editing PHP code, PhpStorm comes with a rich editor
for CSS. It comes with code completion, formatting, intentions,
navigation and so on.
Presenter: Tanmaya Biswal, Mindfire
Solutions
CSS editor support(cont..)
PhpStorm comes with several intentions for CSS as well. There are a lot of
them, for example to change colors, expanding CSS, extracting images,
replacing quotes, or to optimize properties:
Presenter: Tanmaya Biswal, Mindfire
Solutions
CSS editor support(cont..)
Using the Show Applied Styles for Tag context menu on any HTML
tag, we can see which styles are effectively applied to a DOM
element and where the various CSS properties originate from.
Presenter: Tanmaya Biswal, Mindfire
Solutions
Version Control Support
It supports:
SVN, CVS, GIT, Mercurial
From the VCS menu, we can:

Commit and update a file/directory or an entire project.

Work with changelists.

Diff and rollback (revert) changes.

View revision history for file/directory.

Configure of common version control system settings.

Open the Advanced Version Control tool window, with multiple
dedicated tabs for viewing History, Status, Update Info and so on.
Presenter: Tanmaya Biswal, Mindfire
Solutions
Working with Remote PHP
Interpreters
Presenter: Tanmaya Biswal, Mindfire
Solutions
Tips and Tricks

PhpStorm allows creating a tempopary text file or a piece of code,
and then just throw it away, when it's not needed any more.
(Alt+Ctrl+Shift+Insert)

Find code occurrences to change.(Alt+Ctrl+Shift+J)

Delete one line.(Ctrl+Y)

Duplicate one line. (Ctrl+D)

The Database tool window provides access to basic info about the
database objects. (Ctrl+Q)

Code completion for sql query.

You can quickly view the image referenced at caret by using the
Quick Definition (Ctrl+Shift+I). The underlying image will be
opened in a popup instead of a separate editor tab.

Format your Code(Alt+Ctrl+Shift+L)

Local history of a file(Ctrl+Shift+J)

Rename your css selectors from html file.(Shift+F6)

Presenter: Tanmaya Biswal, Mindfire
Solutions
Live Templates (Snippets)
we will see what Live Templates (Snippets) are and how they can be
used to insert frequently-used snippets into our source code
quickly.
Presenter: Tanmaya Biswal, Mindfire
Solutions
How to Install PhpStorm ?
Follow the below links:

https://confluence.jetbrains.com/display/PhpStorm/PhpStorm+Early
+Access+Program

https://www.jetbrains.com/phpstorm/help/system-requirements-
and-installation.html

https://www.youtube.com/watch?v=-wamR3WJt8I
References

https://confluence.jetbrains.com/display/PhpStorm/Tutorials

http://blog.jetbrains.com/ruby/2014/03/whats-mining-multiple-
cursors-and-selection/

https://confluence.jetbrains.com/display/PhpStorm/CSS+Editor+in+
PhpStorm

https://www.jetbrains.com/phpstorm/documentation/phpstorm-
video-tutorials.jsp

https://confluence.jetbrains.com/display/PhpStorm/Version+Control
+Systems+Support+in+PhpStorm
Presenter: Tanmaya Biswal, Mindfire
Solutions
Any Questions ??
Presenter: Tanmaya Biswal, Mindfire
Solutions
Thank You !!
Presenter: Tanmaya Biswal, Mindfire
Solutions

Mais conteúdo relacionado

Semelhante a Php Storm 8 The Most Intelligent php ide

AMIMOTO WordPress + Amazon Web Services for ALL Tech Levels
AMIMOTO WordPress + Amazon Web Services for ALL Tech Levels AMIMOTO WordPress + Amazon Web Services for ALL Tech Levels
AMIMOTO WordPress + Amazon Web Services for ALL Tech Levels Kel
 
Continuous Delivery for Python Developers – PyCon Otto
Continuous Delivery for Python Developers – PyCon OttoContinuous Delivery for Python Developers – PyCon Otto
Continuous Delivery for Python Developers – PyCon OttoPeter Bittner
 
Software Architecture New Features of Visual Studio 2010 / .Net 4.0 - Part 1...
Software Architecture New Features of Visual Studio 2010 / .Net 4.0  - Part 1...Software Architecture New Features of Visual Studio 2010 / .Net 4.0  - Part 1...
Software Architecture New Features of Visual Studio 2010 / .Net 4.0 - Part 1...Shahzad
 
A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0
A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0
A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0Antonio Chagoury
 
MSDN Presents: Visual Studio 2010, .NET 4, SharePoint 2010 for Developers
MSDN Presents: Visual Studio 2010, .NET 4, SharePoint 2010 for DevelopersMSDN Presents: Visual Studio 2010, .NET 4, SharePoint 2010 for Developers
MSDN Presents: Visual Studio 2010, .NET 4, SharePoint 2010 for DevelopersDave Bost
 
Tips and Tricks for Using Visual Studio.Net Effectively
Tips and Tricks for Using Visual Studio.Net EffectivelyTips and Tricks for Using Visual Studio.Net Effectively
Tips and Tricks for Using Visual Studio.Net Effectivelyweili_at_slideshare
 
A Lap Around Visual Studio 2010
A Lap Around Visual Studio 2010A Lap Around Visual Studio 2010
A Lap Around Visual Studio 2010Abram John Limpin
 
Advanced Eclipse Workshop (held at IPC2010 -spring edition-)
Advanced Eclipse Workshop (held at IPC2010 -spring edition-)Advanced Eclipse Workshop (held at IPC2010 -spring edition-)
Advanced Eclipse Workshop (held at IPC2010 -spring edition-)Bastian Feder
 
Building Web Sites that Work Everywhere
Building Web Sites that Work EverywhereBuilding Web Sites that Work Everywhere
Building Web Sites that Work EverywhereDoris Chen
 
Windows Presentation Foundation
Windows Presentation FoundationWindows Presentation Foundation
Windows Presentation FoundationTran Ngoc Son
 
Coding Like the Wind - Tips and Tricks for the Microsoft Visual Studio 2012 C...
Coding Like the Wind - Tips and Tricks for the Microsoft Visual Studio 2012 C...Coding Like the Wind - Tips and Tricks for the Microsoft Visual Studio 2012 C...
Coding Like the Wind - Tips and Tricks for the Microsoft Visual Studio 2012 C...Rainer Stropek
 
Buzzword, How'd They Build That?
Buzzword, How'd They Build That?Buzzword, How'd They Build That?
Buzzword, How'd They Build That?dcoletta
 

Semelhante a Php Storm 8 The Most Intelligent php ide (20)

AMIMOTO WordPress + Amazon Web Services for ALL Tech Levels
AMIMOTO WordPress + Amazon Web Services for ALL Tech Levels AMIMOTO WordPress + Amazon Web Services for ALL Tech Levels
AMIMOTO WordPress + Amazon Web Services for ALL Tech Levels
 
Continuous Delivery for Python Developers – PyCon Otto
Continuous Delivery for Python Developers – PyCon OttoContinuous Delivery for Python Developers – PyCon Otto
Continuous Delivery for Python Developers – PyCon Otto
 
VS 2010 codename Rosario
VS 2010 codename RosarioVS 2010 codename Rosario
VS 2010 codename Rosario
 
Game Studio
Game StudioGame Studio
Game Studio
 
Software Architecture New Features of Visual Studio 2010 / .Net 4.0 - Part 1...
Software Architecture New Features of Visual Studio 2010 / .Net 4.0  - Part 1...Software Architecture New Features of Visual Studio 2010 / .Net 4.0  - Part 1...
Software Architecture New Features of Visual Studio 2010 / .Net 4.0 - Part 1...
 
A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0
A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0
A Sneak Peek At Visual Studio 2010 And .Net Framework 4.0
 
MSDN Presents: Visual Studio 2010, .NET 4, SharePoint 2010 for Developers
MSDN Presents: Visual Studio 2010, .NET 4, SharePoint 2010 for DevelopersMSDN Presents: Visual Studio 2010, .NET 4, SharePoint 2010 for Developers
MSDN Presents: Visual Studio 2010, .NET 4, SharePoint 2010 for Developers
 
Tips and Tricks for Using Visual Studio.Net Effectively
Tips and Tricks for Using Visual Studio.Net EffectivelyTips and Tricks for Using Visual Studio.Net Effectively
Tips and Tricks for Using Visual Studio.Net Effectively
 
HTML5
HTML5 HTML5
HTML5
 
A Lap Around Visual Studio 2010
A Lap Around Visual Studio 2010A Lap Around Visual Studio 2010
A Lap Around Visual Studio 2010
 
Dev Evening
Dev EveningDev Evening
Dev Evening
 
Advanced Eclipse Workshop (held at IPC2010 -spring edition-)
Advanced Eclipse Workshop (held at IPC2010 -spring edition-)Advanced Eclipse Workshop (held at IPC2010 -spring edition-)
Advanced Eclipse Workshop (held at IPC2010 -spring edition-)
 
Firefox-Addons
Firefox-AddonsFirefox-Addons
Firefox-Addons
 
Version Control
Version ControlVersion Control
Version Control
 
Building Web Sites that Work Everywhere
Building Web Sites that Work EverywhereBuilding Web Sites that Work Everywhere
Building Web Sites that Work Everywhere
 
Open event presentation.3 2
Open event presentation.3 2Open event presentation.3 2
Open event presentation.3 2
 
Windows Presentation Foundation
Windows Presentation FoundationWindows Presentation Foundation
Windows Presentation Foundation
 
Coding Like the Wind - Tips and Tricks for the Microsoft Visual Studio 2012 C...
Coding Like the Wind - Tips and Tricks for the Microsoft Visual Studio 2012 C...Coding Like the Wind - Tips and Tricks for the Microsoft Visual Studio 2012 C...
Coding Like the Wind - Tips and Tricks for the Microsoft Visual Studio 2012 C...
 
Bakaplan
BakaplanBakaplan
Bakaplan
 
Buzzword, How'd They Build That?
Buzzword, How'd They Build That?Buzzword, How'd They Build That?
Buzzword, How'd They Build That?
 

Mais de Mindfire Solutions (20)

Physician Search and Review
Physician Search and ReviewPhysician Search and Review
Physician Search and Review
 
diet management app
diet management appdiet management app
diet management app
 
Business Technology Solution
Business Technology SolutionBusiness Technology Solution
Business Technology Solution
 
Remote Health Monitoring
Remote Health MonitoringRemote Health Monitoring
Remote Health Monitoring
 
Influencer Marketing Solution
Influencer Marketing SolutionInfluencer Marketing Solution
Influencer Marketing Solution
 
ELMAH
ELMAHELMAH
ELMAH
 
High Availability of Azure Applications
High Availability of Azure ApplicationsHigh Availability of Azure Applications
High Availability of Azure Applications
 
IOT Hands On
IOT Hands OnIOT Hands On
IOT Hands On
 
Glimpse of Loops Vs Set
Glimpse of Loops Vs SetGlimpse of Loops Vs Set
Glimpse of Loops Vs Set
 
Oracle Sql Developer-Getting Started
Oracle Sql Developer-Getting StartedOracle Sql Developer-Getting Started
Oracle Sql Developer-Getting Started
 
Adaptive Layout In iOS 8
Adaptive Layout In iOS 8Adaptive Layout In iOS 8
Adaptive Layout In iOS 8
 
Introduction to Auto-layout : iOS/Mac
Introduction to Auto-layout : iOS/MacIntroduction to Auto-layout : iOS/Mac
Introduction to Auto-layout : iOS/Mac
 
LINQPad - utility Tool
LINQPad - utility ToolLINQPad - utility Tool
LINQPad - utility Tool
 
Get started with watch kit development
Get started with watch kit developmentGet started with watch kit development
Get started with watch kit development
 
Swift vs Objective-C
Swift vs Objective-CSwift vs Objective-C
Swift vs Objective-C
 
Material Design in Android
Material Design in AndroidMaterial Design in Android
Material Design in Android
 
Introduction to OData
Introduction to ODataIntroduction to OData
Introduction to OData
 
Ext js Part 2- MVC
Ext js Part 2- MVCExt js Part 2- MVC
Ext js Part 2- MVC
 
ExtJs Basic Part-1
ExtJs Basic Part-1ExtJs Basic Part-1
ExtJs Basic Part-1
 
Spring Security Introduction
Spring Security IntroductionSpring Security Introduction
Spring Security Introduction
 

Último

VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionOnePlan Solutions
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024Mind IT Systems
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfVishalKumarJha10
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfproinshot.com
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesVictorSzoltysek
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...kalichargn70th171
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfryanfarris8
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 

Último (20)

VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 

Php Storm 8 The Most Intelligent php ide

  • 1. Presenter: Tanmaya Biswal, Mindfire Solutions Date: 03/02/2015
  • 2. Agenda Presenter: Tanmaya Biswal, Mindfire Solutions Why PhpStorm ? What’s new in PhpStorm 8 ? Frameworks Support Code Formatting Code Quality Analysis Easy Code Navigation & Search Easy XDebugging JavaScript Debugging HTML & CSS Editor support Version Control Support Working with Remote PHP Interpreters Tips and Tricks Live template How to Install PhpStorm ?
  • 3. Why PhpStorm ?  Smart PHP Code Editor  Code Quality Analysis  Development Environment  HTML/CSS/JavaScript Editor  Debugging and Testing  Cross-platform Experience Presenter: Tanmaya Biswal, Mindfire Solutions
  • 5. What’s new in PhpStorm 8 ?  Laravel’s Blade templates  BDD for PHP using Behat  Full WordPress support  Remote PHP interpreters  Advanced AngularJS support  IDE Improvements  Multiple Carets and Selections  Work with individual files without creating a project Presenter: Tanmaya Biswal, Mindfire Solutions
  • 6. Frameworks Support  The existing support of template engines and command-line tools is boosted with a more high- level feature: an MVC view for Symfony2 & Yii frameworks.  Plugins are also available bringing various framework-specific features, such as code completion, navigation, type inference and other IDE best practices for various PHP frameworks (Symfony, Drupal, Magento, Zend etc.). Presenter: Tanmaya Biswal, Mindfire Solutions
  • 7. Code Formatting  Code formatter with code style configuration and other features help you write neat code that's easy to support.(Project Settings | Editor | Code Style | PHP)  PhpStorm contains built-in PSR1/PSR2, Symfony2, Zend, Drupal & other standards compliant code formatting. Presenter: Tanmaya Biswal, Mindfire Solutions
  • 8. Code Quality Analysis  Hundreds of code inspections verify your code as you type and inspect the whole project for possible errors or code smells.  Quick-fixes for most inspections make it easy to fix or improve the code instantly. Alt+Enter shows appropriate options for each inspection.  Ex:  PHP Code Sniffer & Mess Detector  Smart Duplicated Code Detector Presenter: Tanmaya Biswal, Mindfire Solutions
  • 9. Easy Code Navigation & Search  Navigate to Class: Ctrl+N (CMD+O on Mac OS X)  Navigate to File: Ctrl+Shift+N (Shift+Cmd+O on Mac OS X)  Navigate to Symbol: Ctrl+Shift+Alt+N (Alt+CMD+O on Mac OS X)  Search Everywhere: (Double Shift)  Navigate to Declaration: Ctrl+Click (CMD+Click on Mac OS X)  Next / Previous Method: Alt+Down / Up  Recent Files: Ctrl+E (or CMD+E on Mac OS X)  Navigate to Last Edit Location: Ctrl+Shift+Backspace (Shift+CMD+Delete on Mac Presenter: Tanmaya Biswal, Mindfire Solutions
  • 10. Easy XDebugging  Download and install the Xdebug  Enabling XDebug integration with the PHP engine  [xdebug]  zend_extension="/usr/lib/php5/20121212/xdebug. so"  xdebug.remote_enable=1  xdebug.remote_autostart=1  xdebug.default_enable=1  xdebug.remote_handler=dbgp  xdebug.remote_mode=req  xdebug.remote_host=localhost  xdebug.remote_port=9000  xdebug.idekey="PHPSTORM"Presenter: Tanmaya Biswal, Mindfire Solutions
  • 11. JavaScript Debugging  Install the JetBrains Chrome extension  Set a Breakpoints  Start a Debugging Session  Debugging!  Stepping through Code Presenter: Tanmaya Biswal, Mindfire Solutions
  • 12. HTML editor support 1. Editing HTML using PhpStorm 2. Open in Browser 3. Working with Live Edit  HTML is quite verbose. To write HTML code faster and more efficient, PhpStorm lets us use Emmet, which provides a shorthand for lots of things.  For example, we can type p>lorem and hit TAB to expand into a paragraph with Lorem Ipsum text.  A more advanced example would be div#container>div.span4*3>img.thumbnPresenter: Tanmaya Biswal, Mindfire Solutions
  • 13. CSS editor support Just like when editing PHP code, PhpStorm comes with a rich editor for CSS. It comes with code completion, formatting, intentions, navigation and so on. Presenter: Tanmaya Biswal, Mindfire Solutions
  • 14. CSS editor support(cont..) PhpStorm comes with several intentions for CSS as well. There are a lot of them, for example to change colors, expanding CSS, extracting images, replacing quotes, or to optimize properties: Presenter: Tanmaya Biswal, Mindfire Solutions
  • 15. CSS editor support(cont..) Using the Show Applied Styles for Tag context menu on any HTML tag, we can see which styles are effectively applied to a DOM element and where the various CSS properties originate from. Presenter: Tanmaya Biswal, Mindfire Solutions
  • 16. Version Control Support It supports: SVN, CVS, GIT, Mercurial From the VCS menu, we can:  Commit and update a file/directory or an entire project.  Work with changelists.  Diff and rollback (revert) changes.  View revision history for file/directory.  Configure of common version control system settings.  Open the Advanced Version Control tool window, with multiple dedicated tabs for viewing History, Status, Update Info and so on. Presenter: Tanmaya Biswal, Mindfire Solutions
  • 17. Working with Remote PHP Interpreters Presenter: Tanmaya Biswal, Mindfire Solutions
  • 18. Tips and Tricks  PhpStorm allows creating a tempopary text file or a piece of code, and then just throw it away, when it's not needed any more. (Alt+Ctrl+Shift+Insert)  Find code occurrences to change.(Alt+Ctrl+Shift+J)  Delete one line.(Ctrl+Y)  Duplicate one line. (Ctrl+D)  The Database tool window provides access to basic info about the database objects. (Ctrl+Q)  Code completion for sql query.  You can quickly view the image referenced at caret by using the Quick Definition (Ctrl+Shift+I). The underlying image will be opened in a popup instead of a separate editor tab.  Format your Code(Alt+Ctrl+Shift+L)  Local history of a file(Ctrl+Shift+J)  Rename your css selectors from html file.(Shift+F6)  Presenter: Tanmaya Biswal, Mindfire Solutions
  • 19. Live Templates (Snippets) we will see what Live Templates (Snippets) are and how they can be used to insert frequently-used snippets into our source code quickly. Presenter: Tanmaya Biswal, Mindfire Solutions
  • 20. How to Install PhpStorm ? Follow the below links:  https://confluence.jetbrains.com/display/PhpStorm/PhpStorm+Early +Access+Program  https://www.jetbrains.com/phpstorm/help/system-requirements- and-installation.html  https://www.youtube.com/watch?v=-wamR3WJt8I
  • 22. Any Questions ?? Presenter: Tanmaya Biswal, Mindfire Solutions
  • 23. Thank You !! Presenter: Tanmaya Biswal, Mindfire Solutions