I'm using netbeans 8 to work on a PHP project.
I would like to have project tree like this :
My Project
|---Source Files //netbeans' logical directory
|--- src //contains all the files I want to upload on remote server
|--- test //some tests based on src
|--- extra //other files like readme, samples, etc...
|--- build.xml //ant
My problem is I don't know how to configure netbeans so it uploads only the files under src/* to webroot (and not webroot/src/*) and still show the other files in editor
(I've tried the configurate the project properties -> sources / run configuration but i haven't succeeded to match src with webroot).