您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

32 行
782B

  1. <?php
  2. /*
  3. * This file is part of the Fxp Composer Asset Plugin package.
  4. *
  5. * (c) François Pluchino <francois.pluchino@gmail.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Fxp\Composer\AssetPlugin;
  11. /**
  12. * Asset events.
  13. *
  14. * @author François Pluchino <francois.pluchino@gmail.com>
  15. */
  16. class AssetEvents
  17. {
  18. /**
  19. * The ADD_VCS_REPOSITORIES event occurs as a asset VCS repository
  20. * that creates new VCS repositories required by dependencies.
  21. *
  22. * The event listener method receives a
  23. * Fxp\Composer\AssetPlugin\Event\VcsRepositoryEvent instance.
  24. *
  25. * @var string
  26. */
  27. const ADD_VCS_REPOSITORIES = 'fxp.composer.add.vcs.repositories';
  28. }