PHP Classes

File: src/RepositoryClientInterface.php

Recommend this page to a friend!
  Classes of Till Wehowski   Package Fetcher   src/RepositoryClientInterface.php   Download  
File: src/RepositoryClientInterface.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Package Fetcher
Fetch packages from several Composer repositories
Author: By
Last change:
Date: 3 years ago
Size: 327 bytes
 

Contents

Class file image Download
<?php
namespace frdl\PackageFetcher;


interface
RepositoryClientInterface
{
    const
SERVICE_PACKAGE = 'package';
    const
SERVICE_ALL = 'all';
    const
SERVICE_SEARCH = 'search';
    const
SERVICE_POPULAR = 'popular';
   
    public function
service(string $service) :?\callable;
    public function
supports() :array;
}