diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6e6ae76 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/vendor/ +/.* +!.gitignore \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..bffeb2e --- /dev/null +++ b/composer.json @@ -0,0 +1,27 @@ +{ + "name": "fantiq/phpframework", + "type": "composer", + "description": "composer私有仓库测试", + "homepage": "https://github.com/fantiq", + "license": "MIT", + "authors": [ + { + "name": "fanyilong", + "email": "fantiq@163.com" + } + ], + "require": { + "php": ">=7.0" + }, + "autoload": { + "psr-4": { + "framework\\": "src/" + } + }, + "repositories" : [ + { + "type" : "composer", + "url" : "https://packagist.phpcomposer.com" + } + ] +}