catchAdmin/composer.json

65 lines
1.6 KiB
JSON
Raw Normal View History

2019-12-02 23:04:43 +08:00
{
2020-01-15 18:11:57 +08:00
"name": "jaguarjack/catchadmin",
"description": "the api framework base on thinkphp, help you to create admin management soon",
2019-12-02 23:04:43 +08:00
"type": "project",
"keywords": [
"framework",
2020-01-15 18:11:57 +08:00
"catchadmin",
"api",
2019-12-02 23:04:43 +08:00
"ORM"
],
2020-01-15 18:11:57 +08:00
"homepage": "http://doc.catchadmin.com",
2019-12-02 23:04:43 +08:00
"license": "Apache-2.0",
"authors": [
{
2020-01-15 18:11:57 +08:00
"name": "jaguarjack",
"email": "njphper@gmail.com"
2019-12-02 23:04:43 +08:00
}
],
"require": {
"php": ">=7.1.0",
2020-07-02 14:30:25 +08:00
"topthink/framework": "6.0.2",
2020-09-17 21:22:23 +08:00
"topthink/think-orm": "2.0.33",
2019-12-02 23:04:43 +08:00
"topthink/think-migration": "^3.0",
2020-07-13 17:57:57 +08:00
"thans/tp-jwt-auth": "1.1",
2020-02-20 15:45:21 +08:00
"jaguarjack/think-filesystem-cloud": "dev-master",
2020-04-22 05:54:15 +08:00
"overtrue/wechat": "^4.2",
2020-07-10 16:38:42 +08:00
"phpoffice/phpspreadsheet": "^1.12",
2020-07-20 16:48:27 +08:00
"dragonmantank/cron-expression": "^3.0",
2020-09-17 21:22:23 +08:00
"symfony/finder": "^4.4",
"ext-posix": "*",
"ext-pcntl": "*",
"ext-json": "*",
"overtrue/easy-sms": "^1.1",
"jaguarjack/migration-generator": "dev-master"
2019-12-02 23:04:43 +08:00
},
"require-dev": {
2020-06-18 10:50:38 +08:00
"topthink/think-trace":"^1.0",
2020-09-05 16:01:18 +08:00
"symfony/var-dumper": "^5.1",
"swoole/ide-helper": "^4.5"
2019-12-02 23:04:43 +08:00
},
"autoload": {
"psr-4": {
"app\\": "app",
2020-05-06 17:55:16 +08:00
"catchAdmin\\": "catch"
2019-12-02 23:04:43 +08:00
},
"psr-0": {
"": "extend/"
}
},
2020-06-18 10:50:38 +08:00
"autoload-dev": {
"psr-4": {
"catchAdmin\\tests\\": "tests"
}
},
2019-12-02 23:04:43 +08:00
"config": {
"preferred-install": "dist"
},
"scripts": {
"post-autoload-dump": [
"@php think service:discover",
2020-07-10 16:38:42 +08:00
"@php think vendor:publish"
2019-12-02 23:04:43 +08:00
]
}
}