yii2-module / yii2-currency
每天爬取并存储货币汇率引擎。
7.0.5
2024-07-31 17:03 UTC
Requires
- php: >=8.0
- php-extended/php-api-com-duckduckgo-spice-object: ^7
- php-extended/php-basic-console-logger: ^7
- php-extended/php-http-client-factory-object: ^7
- php-extended/php-http-message-factory-psr17: ^7
- php-extended/php-money-interface: ^7
- php-extended/php-multiple-logger: ^7
- php-extended/php-simple-cache-logger: ^7
- yii2-extended/yii2-module-metadata-object: ^7
- yii2-extended/yii2-psr16-simple-cache-bridge: ^7
- yii2-extended/yii2-psr3-logger-bridge: ^7
- yii2-module/yii2-log: ^7
- yii2-module/yii2-module-helper: ^7
- yiisoft/yii2: ^2
Requires (Dev)
- dev-master
- 7.0.5
- 7.0.4
- 7.0.3
- 7.0.2
- 7.0.1
- 7.0.0
- 6.1.5
- 6.1.4
- 6.1.3
- 6.1.2
- 6.1.1
- 6.1.0
- 6.0.5
- 6.0.4
- 6.0.3
- 6.0.2
- 6.0.1
- 6.0.0
- 5.0.2
- 5.0.1
- 5.0.0
- 4.0.4
- 4.0.3
- 4.0.2
- 4.0.1
- 4.0.0
- 3.4.5
- 3.4.4
- 3.4.3
- 3.4.2
- 3.4.1
- 3.4.0
- 3.3.0
- 3.2.0
- 3.1.12
- 3.1.11
- 3.1.10
- 3.1.9
- 3.1.8
- 3.1.7
- 3.1.6
- 3.1.5
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.2.14
- 2.2.13
- 2.2.12
- 2.2.11
- 2.2.10
- 2.2.9
- 2.2.8
- 2.2.7
- 2.2.6
- 2.2.5
- 2.2.4
- 2.2.3
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.0
- 2.0.18
- 2.0.17
- 2.0.16
- 2.0.15
- 2.0.14
- 2.0.13
- 2.0.12
- 2.0.11
- 2.0.10
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.2.1
- 1.2.0
- 1.1.1
- 1.1.0
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2024-08-31 15:07:28 UTC
README
每天爬取并存储货币汇率引擎。
安装
此库的安装通过composer完成,所有类的自动加载也通过其自动加载器完成。
- 从官网下载
composer.phar
。 - 然后运行以下命令将此库作为依赖项安装
php composer.phar install yii2-module/yii2-currency ^7
配置
此模块需要在配置级别设置以下组件
- 'db_currency'应该是一个
\yii\db\Connection
如果您已经有数据库连接,可以使用以下技巧
'db_currency' => function() { return \Yii::$app->get('db'); },
其中'db'是您数据库连接的ID。
此模块使用以下参数在配置级别设置
- 无
然后应按以下方式配置模块(在console.php
或web.php
中)
$config = [
...
'modules' => [
...
'currency' => [
'class' => 'Yii2Module\Yii2Currency\CurrencyModule',
],
...
],
...
];
许可证
MIT(见许可证文件)