| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "name": "hyperf/translation",
- "type": "library",
- "description": "An independent translation component, forked by illuminate/translation.",
- "license": "MIT",
- "keywords": [
- "translation",
- "hyperf"
- ],
- "require": {
- "php": ">=8.1",
- "hyperf/contract": "~3.1.0",
- "hyperf/macroable": "~3.1.0",
- "hyperf/support": "~3.1.0",
- "hyperf/utils": "~3.1.0",
- "psr/container": "^1.0|^2.0"
- },
- "autoload": {
- "files": [
- "src/Functions.php"
- ],
- "psr-4": {
- "Hyperf\\Translation\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\Translation\\": "tests"
- }
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- },
- "hyperf": {
- "config": "Hyperf\\Translation\\ConfigProvider"
- }
- }
- }
|