aeyoll / next-day-delivery
一个小工具,用于判断一家公司是否能够次日发货
1.0.1
2020-01-11 14:15 UTC
Requires
- cmixin/business-day: ^1.7
Requires (Dev)
- phpunit/phpunit: ^6.5
This package is auto-updated.
Last update: 2024-09-12 00:44:36 UTC
README
此仓库是一个小工具,用于判断一家公司是否能够次日发货。
要求
- PHP 7.0+
安装
composer require aeyoll/next-day-delivery
使用
use Aeyoll\NextDayDelivery; $ndd = new NextDayDelivery(); $isNextDayDeliveryPossible = $ndd->isNextDayDeliveryPossible();
如果次日送货是可能的,它将返回实际可以发货之前的时间量。否则,它返回 false
。
选项
或者,您可以将选项数组传递给构造函数
测试
您可以通过克隆仓库并执行PHPUnit来运行测试
composer install ./vendor/bin/phpunit