This repository has been archived on 2023-10-21. You can view files and clone it, but cannot push or open issues or pull requests.
patchouli/src/IPackage.php
2020-12-29 22:44:39 +00:00

14 lines
320 B
PHP

<?php
namespace Patchouli;
use FWIF\FWIFSerializable;
interface IPackage extends FWIFSerializable {
function getId(): string;
function getName(): string;
function getVersion(): Version;
function getFiles(): array;
function getTargets(): array;
function getDependencies(): array;
}