Skip to content
This repository was archived by the owner on Apr 10, 2021. It is now read-only.

Commit 239e0f0

Browse files
committed
Added support for PHP projects.
1 parent 626b682 commit 239e0f0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/main/java/com/welovecoding/nbeditorconfig/listener/ProjectHookLookup.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111
/**
1212
* Project types supported by NetBeans IDE:
1313
* https://platform.netbeans.org/tutorials/nbm-projectextension.html
14+
*
15+
* Module overview:
16+
* http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/modules/
17+
*
18+
* The module type can be found in the "project.xml" file of a NetBeans project.
19+
* Dots in the project type must be replaced with dashes.
1420
*/
1521
@LookupProvider.Registration(projectType = {
1622
"org-netbeans-modules-ant-freeform",
@@ -22,7 +28,8 @@
2228
"org-netbeans-modules-j2ee-ejbjarproject",
2329
"org-netbeans-modules-java-j2seproject",
2430
"org-netbeans-modules-maven",
25-
"org-netbeans-modules-web-clientproject", // HTML5 project
31+
"org-netbeans-modules-php-project",
32+
"org-netbeans-modules-web-clientproject",
2633
"org-netbeans-modules-web-project"
2734
})
2835
/**

0 commit comments

Comments
 (0)