Roadmap.rst 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Roadmap, upgrading and release notes
  2. ====================================
  3. This project implements support for source-code annotations in PHP (5.3+).
  4. Referencing established practices and proven features of annotation-support from other languages and platforms
  5. with native support for annotations (mainly C#/.NET and Java), this library implements a complete,
  6. ":doc:`industrial strength <DesignConsiderations>`" annotation engine for PHP, drawing on the strengths (while
  7. observing the limitations) of the language.
  8. Status
  9. ^^^^^^
  10. The current status of the individual components is as follows:
  11. * The core annotation framework (and API) is stable and complete.
  12. * Documentation is :doc:`being written <index>`.
  13. * Some standard annotations are still stubs or only partially done.
  14. * A fully documented :doc:`demonstration script <DemoScript>` is available.
  15. Roadmap
  16. ^^^^^^^
  17. The current release consists of the following components:
  18. * Core annotation framework. (adds support for annotations)
  19. * Self-contained unit test suite.
  20. * Documentation.
  21. * Example.
  22. A library of useful standard (PHP-DOC and other) annotations has been started, but is incomplete.
  23. Upgrading
  24. ^^^^^^^^^
  25. **Version 1.1.x** introduces some incompatibilities with previous versions:
  26. * The cache-abstraction has been removed - refer to `this note`_ explaining why. If you wrote your own
  27. cache-provider, you should remove it.
  28. * If you derived custom annotation-types from the ``Annotation\Annotation`` base-class, you must rename
  29. the ``_map()`` method to ``map()`` - the underscore suggested a private method, but this method is actually
  30. protected.
  31. .. _this note: https://github.com/php-annotations/php-annotations/pull/6#issuecomment-9279655