Book Image

PhpStorm Cookbook

By : Mukund Chaudhary
Book Image

PhpStorm Cookbook

By: Mukund Chaudhary

Overview of this book

Table of Contents (16 chapters)
PhpStorm Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Using the Phing build view


PhpStorm is just. PhpStorm is good. PhpStorm does not discriminate. There are tool windows provided for every important tool provided to you. The same is true for Phing as well. So, you can have an overview of what Phing can do.

How to do it…

The Phing build view is accessible at View | Tool windows | Phing build window. The Phing view provides functions that are useful for Phing-related actions. So, you can:

  • Add a new build file to execute: There might be Phing build files you have written in some other editor or obtained from another person. You can add those files as build files in PhpStorm. To add files, click on the + button.

  • Remove an existing build file: If you feel that you have added an incorrect version of the build file, you can always recover from your mistake. You can remove a build file from the project by clicking on the button. You can also use the Delete key on your keyboard.

  • Run a build file: If you feel that all the targets have been written...