geega / php-micro
此包的最新版本(0.6.0)没有提供许可证信息。
简单的微PHP框架
0.6.0
2023-07-22 20:08 UTC
Requires
- rakit/validation: 1.0.0
- spatie/data-transfer-object: 1.14.1
Requires (Dev)
- phpunit/phpunit: 9.5.27
- squizlabs/php_codesniffer: 3.7.1
README
简单的PHP微框架
注意:此包正在开发中。同时没有测试。请自行承担风险使用。
DTO
了解更多 https://github.com/spatie/data-transfer-object/blob/1.14.1/README.md
枚举
类使用示例
class StatusEnum extends Enum { const ON = 1; const OFF = 0; public static function getLabels() { return [ self::ON => 'Turn on', self::OFF => 'Turn off', ]; } }