Skip to content

Commit

Permalink
set to production mode
Browse files Browse the repository at this point in the history
  • Loading branch information
princejohnsantillan committed Jun 5, 2022
1 parent d0bd525 commit e08b7bf
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 16 deletions.
10 changes: 10 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# CHANGELOG

## Unreleased
- Tests
- Complete documentation
- styleci

## v1.0.0
- Initial release.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ class FooBar extends Magic

## Roadmap
- [x] Proof of Concept
- [ ] Add tests
- [ ] Publish as a composer package
- [ ] Add tests
- [ ] Make documentation
20 changes: 6 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -26,9 +20,7 @@
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
"App\\": "app/"
}
},
"autoload-dev": {
Expand Down
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
|
*/

'env' => 'development',
'env' => 'production',

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit e08b7bf

Please sign in to comment.