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

14 lines
320 B
PHP
Raw Normal View History

2020-12-23 01:44:45 +00:00
<?php
namespace Patchouli;
use FWIF\FWIFSerializable;
interface IPackage extends FWIFSerializable {
2020-12-29 22:44:39 +00:00
function getId(): string;
2020-12-23 01:44:45 +00:00
function getName(): string;
function getVersion(): Version;
2020-12-29 02:40:16 +00:00
function getFiles(): array;
function getTargets(): array;
2020-12-23 01:44:45 +00:00
function getDependencies(): array;
}