Skip to content

Commit

Permalink
Updated configs for minimal/log and minimal/modules
Browse files Browse the repository at this point in the history
  • Loading branch information
judus committed Apr 14, 2018
1 parent 27a0cb6 commit 23749bd
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 29 deletions.
24 changes: 16 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -818,9 +818,6 @@ Minimal requires at least these packages:
- [![Build Status](https://travis-ci.org/judus/minimal-http.svg?branch=master)](https://travis-ci.org/judus/minimal-http)
[![Latest Version](http://img.shields.io/packagist/v/minimal/http.svg)](https://packagist.org/packages/minimal/http)
[judus/minimal-http](https://github.com/judus/minimal-http) - request and response objects
- [![Build Status](https://travis-ci.org/judus/minimal-log.svg?branch=master)](https://travis-ci.org/judus/minimal-log)
[![Latest Version](http://img.shields.io/packagist/v/minimal/log.svg)](https://packagist.org/packages/minimal/log)
[judus/minimal-log](https://github.com/judus/minimal-log) - a simple logger
- [![Build Status](https://travis-ci.org/judus/minimal-middlewares.svg?branch=master)](https://travis-ci.org/judus/minimal-middlewares)
[![Latest Version](http://img.shields.io/packagist/v/minimal/middlewares.svg)](https://packagist.org/packages/minimal/middlewares)
[judus/minimal-middlewares](https://github.com/judus/minimal-middlewares) - a unconventional middleware implementation
Expand Down Expand Up @@ -850,6 +847,12 @@ These packages are also included but are not necessary:
- [![Build Status](https://travis-ci.org/judus/minimal-html.svg?branch=master)](https://travis-ci.org/judus/minimal-html)
[![Latest Version](http://img.shields.io/packagist/v/minimal/html.svg)](https://packagist.org/packages/minimal/html)
[judus/minimal-html](https://github.com/judus/minimal-html) - for now just a html table class
- [![Build Status](https://travis-ci.org/judus/minimal-log.svg?branch=master)](https://travis-ci.org/judus/minimal-log)
[![Latest Version](http://img.shields.io/packagist/v/minimal/log.svg)](https://packagist.org/packages/minimal/log)
[judus/minimal-log](https://github.com/judus/minimal-log) - a simple logger
- [![Build Status](https://travis-ci.org/judus/minimal-modules.svg?branch=master)](https://travis-ci.org/judus/minimal-modules)
[![Latest Version](http://img.shields.io/packagist/v/minimal/modules.svg)](https://packagist.org/packages/minimal/modules)
[judus/minimal-modules](https://github.com/judus/minimal-modules) - modules, whatever these are, see docs
- [![Build Status](https://travis-ci.org/judus/minimal-paths.svg?branch=master)](https://travis-ci.org/judus/minimal-paths)
[![Latest Version](http://img.shields.io/packagist/v/minimal/paths.svg)](https://packagist.org/packages/minimal/paths)
[judus/minimal-paths](https://github.com/judus/minimal-paths) - might help creating paths and urls
Expand All @@ -862,19 +865,24 @@ These packages are also included but are not necessary:

---
#### TODOs until v1.0.0
- Replace all IOC with Provider in application object (Minimal.php)
- Test the complementary libraries
- Write more testcases for the core packages
- Restructure for a event based system
- It should not be necessary to require anything else than IOC and events
- More tests for the core packages
- Test all the complementary libraries
- Api documentation
- Update the README
- Better demo application
- Update the README
- Website
---

### About
### Excuse me...

- It was too cold for outdoor activities. (Winter 2016)
- It was too warm for physical activities. (Summer 2017)
- I was too cranky for social interactions. (Early Winter 2018)
- It was too rainy for outdoor activities. (Late Winter 2018)
- Outdoor activities would have been too expensive. (Early Spring 2018)
- Summer 2018... no valid excuse yet.

### License

Expand Down
7 changes: 7 additions & 0 deletions config/_development.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,11 @@
'display_errors' => 1
],

// ----------------------------------------------------------------------------
// LOGGING

'log' => [
'level' => 5,
'benchmarks' => false
],
];
21 changes: 0 additions & 21 deletions config/minimal.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,6 @@
'views' => 'resources/views/my-theme'
],

// ----------------------------------------------------------------------------
// APPLICATION
/*
'app' => [
'bindingsFile' => 'config/bindings.php',
'configFile' => 'config/config.php',
'providersFile' => 'config/providers.php',
'routesFile' => 'config/routes.php',
],
*/
// ----------------------------------------------------------------------------
// MODULES

'modules' => [
'bindingsFile' => 'Config/bindings.php',
'configFile' => 'Config/config.php',
'providersFile' => 'Config/providers.php',
'subscribersFile' => 'Config/subscribers.php',
'routesFile' => 'Config/routes.php',
],

// ----------------------------------------------------------------------------
// DATABASE

Expand Down

0 comments on commit 23749bd

Please sign in to comment.