]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - extlib/README.md
fixed parser error (opps)
[quix0rs-gnu-social.git] / extlib / README.md
1 Most of this directory contents are patched PEAR libraries (necessary as PEAR packages are no longer maintained)
2
3 List of external libraries
4 --------------------------
5
6 A number of external PHP libraries are used to provide basic
7 functionality and optional functionality for your system. For your
8 convenience, they are available in the "extlib" directory of this
9 package, and you do not have to download and install them. However,
10 you may want to keep them up-to-date with the latest upstream version,
11 and the URLs are listed here for your convenience.
12
13 - DB_DataObject http://pear.php.net/package/DB_DataObject
14 - Validate http://pear.php.net/package/Validate
15 - PEAR Mail, for sending out mail notifications
16   http://pear.php.net/package/Mail
17 - PEAR Net_SMTP, if you use the SMTP factory for notifications
18   http://pear.php.net/package/Net_SMTP
19 - PEAR Net_Socket, if you use the SMTP factory for notifications
20   http://pear.php.net/package/Net_Socket
21 - OAuth.php from http://oauth.googlecode.com/svn/code/php/
22 (has been edited to avoid colliding autoload)
23
24
25 - PEAR Validate is used for URL and email validation.
26 - Console_GetOpt for parsing command-line options.
27 - HTTP_Request2, a library for making HTTP requests.
28 - PEAR Net_URL2 is an HTTP_Request2 dependency.
29
30 TODO
31 ----
32
33 - Port from PEAR NET to Guzzle
34 - Port from PEAR DB to Doctrine DBAL
35 - Port from PEAR mail to PHPMailer
36 - eventually port OAuth to something more modern
37
38 Why not replace all the components with newer ones? We don't think the alternatives really meet our needs or are at
39 all necessary and/or better solutions. The code of these patched libraries that we are maintaing is quite good.