catchAdmin/composer.json
2020-01-15 18:11:57 +08:00

51 lines
1.2 KiB
JSON

{
"name": "jaguarjack/catchadmin",
"description": "the api framework base on thinkphp, help you to create admin management soon",
"type": "project",
"keywords": [
"framework",
"catchadmin",
"api",
"ORM"
],
"homepage": "http://doc.catchadmin.com",
"license": "Apache-2.0",
"authors": [
{
"name": "jaguarjack",
"email": "njphper@gmail.com"
}
],
"require": {
"php": ">=7.1.0",
"topthink/framework": "^6.0.0",
"topthink/think-orm": "^2.0",
"topthink/think-view": "^1.0",
"topthink/think-migration": "^3.0",
"topthink/think-captcha": "^3.0",
"thans/tp-jwt-auth": "^1.0"
},
"require-dev": {
"symfony/var-dumper": "^4.2",
"topthink/think-trace":"^1.0"
},
"autoload": {
"psr-4": {
"app\\": "app",
"catchAdmin\\": "catch"
},
"psr-0": {
"": "extend/"
}
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"post-autoload-dump": [
"@php think service:discover",
"@php think vendor:publish"
]
}
}