index.rst 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. Home
  2. ====
  3. This library provides support for source-code annotations in PHP.
  4. This library references practices and features established by other languages and platforms with native support
  5. for annotations, mainly C#/.NET and Java, drawing on the strengths (while observing the limitations) of the
  6. PHP language.
  7. The main areas of this Wiki are listed below:
  8. * :doc:`*Roadmap, upgrading and release notes <Roadmap>`
  9. * :doc:`*Understanding and applying annotations to PHP source code <UsingAnnotations>`
  10. * :doc:`*Consuming source-code annotations at run-time <ConsumingAnnotations>`
  11. * :doc:`*Writing your own types of annotations <CustomAnnotations>`
  12. * :doc:`*See a fully documented, step-by-step example of declarative meta-programming at work <DemoScript>`
  13. * :doc:`*Review the standard library of annotations <AnnotationLibrary>`
  14. * :doc:`*Learn more about the design considerations behind this library <DesignConsiderations>`
  15. This library was created by `Rasmus Schultz <https://github.com/mindplay-dk>`_ - a lot of careful planning and design
  16. went into this project, which was in development for almost a year before it's initial release.
  17. .. toctree::
  18. :maxdepth: 2
  19. getting-started
  20. Roadmap
  21. UsingAnnotations
  22. ConsumingAnnotations
  23. CustomAnnotations
  24. DemoScript
  25. AnnotationLibrary
  26. DesignConsiderations