Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

65 lines
1.3KB

  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\Repository;
  11. /**
  12. * Bower repository.
  13. *
  14. * @author François Pluchino <francois.pluchino@gmail.com>
  15. */
  16. class BowerRepository extends AbstractAssetsRepository
  17. {
  18. /**
  19. * {@inheritdoc}
  20. */
  21. protected function getType()
  22. {
  23. return 'bower';
  24. }
  25. /**
  26. * {@inheritdoc}
  27. */
  28. protected function getUrl()
  29. {
  30. return 'https://bower.herokuapp.com/packages';
  31. }
  32. /**
  33. * {@inheritdoc}
  34. */
  35. protected function getPackageUrl()
  36. {
  37. return $this->canonicalizeUrl($this->baseUrl.'/%package%');
  38. }
  39. /**
  40. * {@inheritdoc}
  41. */
  42. protected function getSearchUrl()
  43. {
  44. return $this->canonicalizeUrl($this->baseUrl.'/search/%query%');
  45. }
  46. /**
  47. * {@inheritdoc}
  48. */
  49. protected function createVcsRepositoryConfig(array $data, $registryName = null)
  50. {
  51. return array(
  52. 'type' => $this->assetType->getName().'-vcs',
  53. 'url' => $data['url'],
  54. 'name' => $registryName,
  55. );
  56. }
  57. }