Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the ".phpintel" folder at the top of the Laravel file structure?

I am just noticing that there is a .phpintel folder at the top of the Laravel file structure. Where did it come from, is it necessary and can I gitignore it?

like image 893
Jeffrey Avatar asked Feb 02 '17 01:02

Jeffrey


2 Answers

phpintel is a common sublime plugin. PHP code scanner and analyzer for code intelligence within PHP projects.

It creates .phpintel directory like .idea for Phpstorm and it should be included to .gitignore list of project and contains local project related settings and history for it.

like image 78
Shahzaib Hayat Khan Avatar answered Oct 19 '22 22:10

Shahzaib Hayat Khan


You can ignore any hidden (and generated) data

You will find phpintel ignored in many .gitignore project file, such as:

  • postmark-php/.gitignore
  • Zizaco/entrust/.gitignore
  • ...
like image 2
VonC Avatar answered Oct 20 '22 00:10

VonC