Skip to content

Commit 4a6246a

Browse files
committed
5.4.3 Package Auto-Discovery
1 parent 87d0e00 commit 4a6246a

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,10 @@ Add the following line to the `require` section of your Laravel webapp's `compos
4949
}
5050
```
5151

52-
5352
Run `composer update` to install the package.
5453

55-
56-
Finally add the following line to the `providers` array of your `app/config/app.php` file:
54+
This package uses Laravel 5.5 Package Auto-Discovery.
55+
For previous versions of Laravel, you need to update `config/app.php` by adding an entry for the service provider:
5756

5857
```php
5958
'providers' => array(
@@ -110,6 +109,10 @@ When you call command without parameters - it will try to read default file of e
110109

111110
Changelog
112111
------------
112+
113+
5.4.3
114+
- support Package Auto-Discovery
115+
113116
5.4.2
114117
- resolve problems with PSR-4 autoloading
115118

@@ -127,6 +130,7 @@ Changelog
127130
Roadmap
128131
------------
129132

133+
* Removing tabs from text
130134
* Option for deleting export file after importing.
131135
* Option for excluding certain files (and system ones).
132136
* Unit tests!
@@ -136,4 +140,4 @@ Credits
136140

137141
This package was originally created by [UFirst](http://github.com/ufirstgroup) and is available here: [Laravel-lang-import-export](https://github.com/ufirstgroup/laravel-lang-import-export).
138142

139-
Currently is developed by [HighSolutions](http://highsolutions.pl), software house from Poland in love in Laravel.
143+
Currently is developed by [HighSolutions](https://highsolutions.org), software house from Poland in love in Laravel.

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@
2424
},
2525
"extra": {
2626
"component": "package",
27-
"frameworks": ["Laravel 5"]
27+
"frameworks": ["Laravel 5.5"],
28+
"laravel": {
29+
"providers": [
30+
"HighSolutions\\LangImportExport\\LangImportExportServiceProvider"
31+
]
32+
}
2833
},
2934
"minimum-stability": "stable"
3035
}

0 commit comments

Comments
 (0)