Version.php 594 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Gedmo;
  3. use Gedmo\Exception\DependentComponentNotFoundException;
  4. use Gedmo\Exception\IncompatibleComponentVersionException;
  5. /**
  6. * Version class allows to checking the dependencies required
  7. * and the current version of doctrine extensions
  8. *
  9. * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
  10. * @subpackage Version
  11. * @package Gedmo
  12. * @link http://www.gediminasm.org
  13. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  14. */
  15. final class Version
  16. {
  17. /**
  18. * Current version of extensions
  19. */
  20. const VERSION = '2.3.0-DEV';
  21. }