easybib / silex-hal-provider
Silex 提供器,用于 nocarrier/hal 库
1.0.0
2014-12-23 14:20 UTC
Requires
- nocarrier/hal: ~0.9.10
This package is not auto-updated.
Last update: 2024-09-14 17:37:16 UTC
README
向 silex 容器添加 HAL 构建器对象,该对象从 nocarrier/hal 库返回 HAL 对象实例。
HAL 的背景
- http://en.wikipedia.org/wiki/Hypertext_Application_Language
- http://stateless.co/hal_specification.html
用法
$app->register(new EasyBib\Silex\Provider\HALServiceProvider());
$hal = $app['hal']->build('/orders', ['customerId' => 'CUS1234']);
查看 [Nocarrier\Hal 文档](https://github.com/blongden/hal/blob/develop/README.md) 获取 HAL 库使用示例。