Skip to content

Commit

Permalink
Merge branch 'release/1.4.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem Schander committed Feb 16, 2020
2 parents 2bf2c58 + 7d9a428 commit 943a33a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
8 changes: 1 addition & 7 deletions README.md
Expand Up @@ -6,7 +6,7 @@
[![License](https://poser.pugx.org/artem-schander/l5-modular/license)](https://opensource.org/licenses/MIT)

This package gives you the ability to use Laravel with module system.
You can simply drop or generate modules with their own controllers, models, views, translations and a routes file into the `app/Modules` folder and go on working with them.
You can simply drop or generate modules with their own controllers, models, views, translations and routes files into the `app/Modules` folder and go on working with them.

Thanks to zyhn for the ["Modular Structure in Laravel 5" tutorial](http://ziyahanalbeniz.blogspot.com.tr/2015/03/modular-structure-in-laravel-5.html). Well explained and helped a lot.

Expand All @@ -26,12 +26,6 @@ Run the following command from your projects root
```shell
composer require artem-schander/l5-modular
```
Once this operation is complete, simply add the service provider to your project's `config/app.php` and you're done.

#### Service Provider
```php
ArtemSchander\L5Modular\ModuleServiceProvider::class,
```

<a name="getting-started"></a>
## Getting started
Expand Down
11 changes: 9 additions & 2 deletions composer.json
Expand Up @@ -4,11 +4,11 @@
"keywords": ["laravel", "modular", "modules", "module", "structure", "pattern", "Artem", "Schander", "l5modular", "artisan", "generator"],
"homepage": "https://github.com/Artem-Schander/L5Modular",
"license": "MIT",
"version": "1.4.2",
"version": "1.4.3",
"authors": [
{
"name": "Artem Schander",
"email": "a.schander@vanameland.de"
"email": "info@artekk.de"
}
],
"require": {
Expand All @@ -20,5 +20,12 @@
"ArtemSchander\\L5Modular\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"ArtemSchander\\L5Modular\\ModuleServiceProvider"
]
}
},
"minimum-stability": "dev"
}

0 comments on commit 943a33a

Please sign in to comment.