czproject/dependency-php

用于依赖解析的PHP类。

v2.0.0 2021-03-13 18:08 UTC

This package is auto-updated.

Last update: 2024-09-13 18:21:10 UTC


README

Build Status Downloads this Month Latest Stable Version License

用于依赖解析的PHP类。

Donate

安装

下载最新包 [下载] 或使用 Composer

composer require czproject/dependency-php

Dependency-PHP 需要 PHP 5.6.0 或更高版本。

使用方法

$resolver = new CzProject\DependencyPhp\Resolver;
$resolver->add('x', array('a', 'b'))
	->add('a', array('b', 'c'))
	->add('b', 'd')
	->add('c', array('d'));

$resolver->getResolved(); // returns ['d', 'b', 'c', 'a', 'x']

许可证: 新BSD许可证
作者: Jan Pecha, [个人主页]