chengkun
2025-09-15 cff43dbd99d99189864acd591f856a38e87c5b09
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
    "name": "topthink/think-orm",
    "description": "the PHP Database&ORM Framework",
    "keywords": [
        "orm",
        "database"
    ],
    "license": "Apache-2.0",
    "authors": [
        {
            "name": "liu21st",
            "email": "liu21st@gmail.com"
        }
    ],
    "require": {
        "php": ">=8.0.0",
        "ext-json": "*",
        "ext-pdo": "*",
        "psr/simple-cache": ">=1.0",
        "psr/log": ">=1.0",
        "topthink/think-helper":"^3.1"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.6|^10"
    },
    "autoload": {
        "psr-4": {
            "think\\": "src"
        },
        "files": [
            "stubs/load_stubs.php"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "tests\\": "tests"
        }
    },
    "suggest": {
        "ext-mongodb": "provide mongodb support"
    },
    "config": {
        "sort-packages": true
    }
}