From e08b7bf801b0a52237c392122e17ca5ae207804b Mon Sep 17 00:00:00 2001 From: princejohnsantillan Date: Mon, 6 Jun 2022 07:17:24 +0800 Subject: [PATCH] set to production mode --- .gitattributes | 10 ++++++++++ CHANGELOG.md | 9 +++++++++ README.md | 2 +- composer.json | 20 ++++++-------------- config/app.php | 2 +- 5 files changed, 27 insertions(+), 16 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.gitattributes b/.gitattributes index 2045778..f6df82e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -5,3 +5,13 @@ BACKERS.md export-ignore CONTRIBUTING.md export-ignore CHANGELOG.md export-ignore +/config/stubs.php export-ignore +/stubs export-ignore +/tests export-ignore +phpunit.xml.dist export-ignore +/vendor export-ignore +.editorconfig export-ignore +.gitattributes export-ignore +.gitignore export-ignore +box.json export-ignore +composer.lock export-ignore diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..74d521e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# CHANGELOG + +## Unreleased +- Tests +- Complete documentation +- styleci + +## v1.0.0 +- Initial release. diff --git a/README.md b/README.md index a66c9db..dbc6a7f 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,6 @@ class FooBar extends Magic ## Roadmap - [x] Proof of Concept -- [ ] Add tests - [ ] Publish as a composer package +- [ ] Add tests - [ ] Make documentation diff --git a/composer.json b/composer.json index 94fbe12..6c82a74 100644 --- a/composer.json +++ b/composer.json @@ -1,18 +1,12 @@ { - "name": "laravel-zero/laravel-zero", - "description": "The Laravel Zero Framework.", - "keywords": ["framework", "laravel", "laravel zero", "console", "cli"], - "homepage": "https://laravel-zero.com", - "type": "project", + "name": "princejohnsantillan/stubby", + "description": "Simple way to create files from stubs.", + "keywords": ["laravel", "stubs"], "license": "MIT", - "support": { - "issues": "https://github.com/laravel-zero/laravel-zero/issues", - "source": "https://github.com/laravel-zero/laravel-zero" - }, "authors": [ { - "name": "Nuno Maduro", - "email": "enunomaduro@gmail.com" + "name": "Prince John Santillan", + "email": "mail@princejohnsantillan.net" } ], "require": { @@ -26,9 +20,7 @@ }, "autoload": { "psr-4": { - "App\\": "app/", - "Database\\Factories\\": "database/factories/", - "Database\\Seeders\\": "database/seeders/" + "App\\": "app/" } }, "autoload-dev": { diff --git a/config/app.php b/config/app.php index 9ff720e..0c4fac9 100644 --- a/config/app.php +++ b/config/app.php @@ -40,7 +40,7 @@ | */ - 'env' => 'development', + 'env' => 'production', /* |--------------------------------------------------------------------------