PHProject will display Web application statistics like file system information, project file statistics, source code information, lines of code and recently modified files. PHProject is written in PHP and is open source. PHProject is easy to use: all you have to do is drop it on your Web server and editing a couple configuration settings. After installation PHProject will scan and read your application directories and files and display its findings: directories and file information, project file size, various types of files found in the project, code summary of source code found in the project, and list recently modified files.
Project Status
Current Version: 0.0.r4 Beta
Released: 2/15/11
Language: PHP (5.x)
Code License: GNU General Public License (There is no warranty for this software)
Note: Current version only supports PHP programming language in the "Code Summary" section
Released: 2/15/11
Language: PHP (5.x)
Code License: GNU General Public License (There is no warranty for this software)
Note: Current version only supports PHP programming language in the "Code Summary" section
Usage
PHProject is easy to setup and use, here are the steps to setup and use PHProject:- Open the "phproject.php" file for editing
- Set the base project directory (the base directory for your PHP project, most likely your Website root directory) by editing this line:
$config["dir_base"] = "/var/www/sandbox"; - Set the directories you want PHProject to ignore (will not use these directories in the project stats) by editing this line: (by default I am ignoring ".svn" (subversion) and "nbproject" (NetBeans) directories)
$config["dir_ignore"] = array(".svn", "nbproject"); - Set your project title by editing this line:
$config["project_title"] = "Example Project"; - Save and close the "phproject.php" file and place the file in your Website directory
- Navigate to the "phproject.php" location in a Web browser to view the PHProject page (for example: http://www.example.com/phproject.php)
