You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
3.9 KiB

  1. SimplePie
  2. =========
  3. SimplePie is a very fast and easy-to-use class, written in PHP, that puts the
  4. 'simple' back into 'really simple syndication'. Flexible enough to suit
  5. beginners and veterans alike, SimplePie is focused on [speed, ease of use,
  6. compatibility and standards compliance][what_is].
  7. [what_is]: http://simplepie.org/wiki/faq/what_is_simplepie
  8. Requirements
  9. ------------
  10. * PHP 5.2.0 or newer
  11. * libxml2 (certain 2.7.x releases are too buggy for words, and will crash)
  12. * Either the iconv or mbstring extension
  13. * cURL or fsockopen()
  14. * PCRE support
  15. If you're looking for PHP 4.x support, pull the "one-dot-two" branch, as that's
  16. the last version to support PHP 4.x.
  17. What comes in the package?
  18. --------------------------
  19. 1. `library/` - SimplePie classes for use with the autoloader
  20. 2. `autoloader.php` - The SimplePie Autoloader if you want to use the separate
  21. file version.
  22. 3. `README.markdown` - This document.
  23. 4. `LICENSE.txt` - A copy of the BSD license.
  24. 5. `compatibility_test/` - The SimplePie compatibility test that checks your
  25. server for required settings.
  26. 6. `demo/` - A basic feed reader demo that shows off some of SimplePie's more
  27. noticeable features.
  28. 7. `idn/` - A third-party library that SimplePie can optionally use to
  29. understand Internationalized Domain Names (IDNs).
  30. 8. `build/` - Scripts related to generating pieces of SimplePie
  31. 9. `test/` - SimplePie's unit test suite.
  32. ### Where's `simplepie.inc`?
  33. For SimplePie 1.3, we've split the classes into separate files to make it easier
  34. to maintain and use.
  35. If you'd like a single monolithic file, you can run `php build/compile.php` to
  36. generate `SimplePie.compiled.php`, or grab a copy from
  37. [dev.simplepie.org][dev_compiled] (this is kept up-to-date with the latest
  38. code from Git).
  39. [dev_compiled]: http://dev.simplepie.org/SimplePie.compiled.php
  40. To start the demo
  41. -----------------
  42. 1. Upload this package to your webserver.
  43. 2. Make sure that the cache folder inside of the demo folder is server-writable.
  44. 3. Navigate your browser to the demo folder.
  45. Need support?
  46. -------------
  47. For further setup and install documentation, function references, etc., visit
  48. [the wiki][wiki]. If you're using the latest version off GitHub, you can also
  49. check out the [API documentation][].
  50. If you can't find an answer to your question in the documentation, head on over
  51. to one of our [support channels][]. For bug reports and feature requests, visit
  52. the [issue tracker][].
  53. [API documentation]: http://dev.simplepie.org/api/
  54. [wiki]: http://simplepie.org/wiki/
  55. [support channels]: http://simplepie.org/support/
  56. [issue tracker]: http://github.com/simplepie/simplepie/issues
  57. Project status
  58. --------------
  59. SimplePie is currently maintained by Ryan McCue.
  60. As an open source project, SimplePie is maintained on a somewhat sporadic basis.
  61. This means that feature requests may not be fulfilled straight away, as time has
  62. to be prioritized.
  63. If you'd like to contribute to SimplePie, the best way to get started is to fork
  64. the project on GitHub and send pull requests for patches. When doing so, please
  65. be aware of our [coding standards][].
  66. [coding standards]: http://simplepie.org/wiki/misc/coding_standards
  67. Authors and contributors
  68. ------------------------
  69. ### Current
  70. * [Ryan McCue][] (Maintainer, support)
  71. ### Alumni
  72. * [Ryan Parman][] (Creator, developer, evangelism, support)
  73. * [Geoffrey Sneddon][] (Lead developer)
  74. * [Michael Shipley][] (Submitter of patches, support)
  75. * [Steve Minutillo][] (Submitter of patches)
  76. [Ryan McCue]: http://ryanmccue.info
  77. [Ryan Parman]: http://ryanparman.com
  78. [Geoffrey Sneddon]: http://gsnedders.com
  79. [Michael Shipley]: http://michaelpshipley.com
  80. [Steve Minutillo]: http://minutillo.com/steve/
  81. ### Contributors
  82. For a complete list of contributors:
  83. 1. Pull down the latest SimplePie code
  84. 2. In the `simplepie` directory, run `git shortlog -ns`
  85. License
  86. -------
  87. [New BSD license](http://www.opensource.org/licenses/BSD-3-Clause)