a15lam / workspace
常用类和实用工具的库。
0.1.1
2018-06-23 15:48 UTC
Requires
- php: >=5.5
- vlucas/phpdotenv: ^2.4
This package is auto-updated.
Last update: 2024-08-29 04:03:35 UTC
README
这是一个包含我在其他库/项目中常用的所有类的库。这个库是为了我个人的使用而设计的,以便使生活变得更简单。当我在这个库上工作时,我只是在考虑自己,而不是其他人。话虽如此,你当然可以使用它。
使用方法
配置
在您的项目中覆盖 Workspace
类,并在 Workspace::$configInfo
中设置您的 PHP 配置文件。默认是 DIR . '/../config.php'
。一旦设置文件路径,您就可以像下面这样获取配置值。
//This is your overwritten version of Workspace class where you set the config file.
Workspace::config()->get('config-name-here');
日志记录器
在您的项目中覆盖 Workspace
类,并在 Workspace::$logPath
中设置您的日志路径。默认是 DIR . '/../storage/logs/
。一旦设置日志路径,您就可以像下面这样开始使用日志记录器。
//This is your overwritten version of Workspace class where you set the config file.
Workspace::log()->warn('message');
Workspace::log()->error('message');
Workspace::log()->info('message');
Workspace::log()->debug('message');