From d02a36042d35362c362450f095917b99376b7c79 Mon Sep 17 00:00:00 2001 From: liangshitang Date: Wed, 25 Sep 2019 13:20:06 +0800 Subject: [PATCH] test --- .gitignore | 1 + composer.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 composer.json diff --git a/.gitignore b/.gitignore index bdae462..e504410 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ # Compiled Object files, Static and Dynamic libs (Shared Objects) .idea composer.lock +1111 \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..96fdcc7 --- /dev/null +++ b/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" + ] + } +}