Browse Source

test

master
liangshitang 5 years ago
parent
commit
d02a36042d
  1. 1
      .gitignore
  2. 47
      composer.json

1
.gitignore

@ -1,3 +1,4 @@
# Compiled Object files, Static and Dynamic libs (Shared Objects)
.idea
composer.lock
1111

47
composer.json

@ -0,0 +1,47 @@
{
"name": "topthink/think",
"description": "the new thinkphp framework",
"type": "project",
"keywords": [
"framework",
"thinkphp",
"ORM"
],
"homepage": "http://thinkphp.cn/",
"license": "Apache-2.0",
"authors": [
{
"name": "liu21st",
"email": "liu21st@gmail.com"
}
],
"require": {
"php": ">=7.1.0",
"topthink/framework": "6.0.*-dev",
"topthink/think-orm": "2.0.*-dev",
"topthink/think-view": "^1.0",
"phpoffice/phpword": "^0.16.0",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"symfony/var-dumper": "^4.2"
},
"autoload": {
"psr-4": {
"app\\": "app"
},
"psr-0": {
"": "extend/"
}
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"post-autoload-dump": [
"@php think service:discover",
"@php think vendor:publish"
]
}
}
Loading…
Cancel
Save