Commit: 70d522f5a04da22c68ab62fbd8c63edf27f33987 Author: Peter Kokot <[email protected]> Mon, 22 Oct 2018 23:58:27 +0200 Parents: 7b505fa99b01ef23d973b17c6ff5a144a9da68b4 Branches: master
Link: http://git.php.net/?p=web/bugs.git;a=commitdiff;h=70d522f5a04da22c68ab62fbd8c63edf27f33987 Log: Update README with installation info Changed paths: M README.md Diff: diff --git a/README.md b/README.md index 61f351d..97bdf58 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,35 @@ - - Text_Diff - - HTTP_Upload - -Installation -============ -1. Copy `local_config.php.sample` to `local_config.php` and modify accordingly -2. Install all required packages: -`pear install Text_CAPTCHA_Numeral Text_Diff HTTP_Upload` +# PHP Bug Tracking System + +This is a unified bug tracking system for PHP hosted online at +[bugs.php.net](https://bugs.php.net). + +## Requirements + +- PHP 5.4+ +- ext/pdo +- ext/pdo_mysql +- ext/openssl (for https:// fopen wrapper) +- PEAR packages: + - Text_CAPTCHA_Numeral + - Text_Diff + - HTTP_Upload (1.0.0b4 or later) + +## Local installation + +* Copy configuration and modify it accordingly for your local system: + +```bash +cp local_config.php.sample local_config.php +``` + +* Install required dependencies using PEAR: + +```bash +pear channel-update pear.php.net +pear install --alldeps Text_CAPTCHA_Numeral Text_Diff HTTP_Upload-1.0.0b4 +``` + +* Database: + +Create a new database using `sql/phpbugsdb_create.sql` and insert fixtures using +`sql/bugs.sql`. -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
