vr-shopxo-source/vendor/topthink/think-orm/composer.json

46 lines
926 B
JSON
Raw Normal View History

2021-07-18 15:42:10 +00:00
{
"name": "topthink/think-orm",
2024-04-25 06:47:59 +00:00
"description": "the PHP Database&ORM Framework",
2021-07-18 15:42:10 +00:00
"keywords": [
"orm",
"database"
2024-04-25 06:47:59 +00:00
],
2021-07-18 15:42:10 +00:00
"license": "Apache-2.0",
"authors": [
{
"name": "liu21st",
"email": "liu21st@gmail.com"
}
],
"require": {
2024-04-25 06:47:59 +00:00
"php": ">=8.0.0",
2021-07-18 15:42:10 +00:00
"ext-json": "*",
"ext-pdo": "*",
2024-04-25 06:47:59 +00:00
"psr/simple-cache": ">=1.0",
"psr/log": ">=1.0",
2021-07-18 15:42:10 +00:00
"topthink/think-helper":"^3.1"
},
"require-dev": {
2024-12-25 09:35:54 +00:00
"phpunit/phpunit": "^9.6|^10"
2021-07-18 15:42:10 +00:00
},
"autoload": {
"psr-4": {
"think\\": "src"
},
"files": [
"stubs/load_stubs.php"
]
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests"
}
},
2024-12-25 09:35:54 +00:00
"suggest": {
"ext-mongodb": "provide mongodb support"
},
2021-07-18 15:42:10 +00:00
"config": {
"sort-packages": true
}
}