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.

32 satır
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. }