Skip to content

Commit 59d0c61

Browse files
committed
[ci skip] Fix some small readme issues
1 parent 60c9dfb commit 59d0c61

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

README.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -10,43 +10,52 @@
1010
</p>
1111

1212
<h3># Prerequisites</h3>
13+
1314
Before using this package, make sure you are at least running PHP 7.0 and that you have Laravel 5.4.
1415

1516
<h3># Setup</h3>
17+
1618
First, add this package to your `composer.json`:
19+
1720
```
1821
composer require luna/laravel-importer "~1.0"
1922
```
2023

2124
Add the service provider and facade to `config/app.php`:
25+
2226
```php
2327
'providers' => [
2428
// ...
2529
// Package providers
26-
30+
2731
Luna\Importer\ServiceProvider::class,
2832
],
29-
33+
3034
'aliases' => [
3135
// ...
32-
36+
3337
"Import" => Luna\Importer\ImporterFacade::class
3438
]
3539
```
3640

3741
Publish the configuration:
42+
3843
```
3944
php artisan vendor:publish --provider="Luna\Importer\ServiceProvider"
4045
```
4146

4247
<h3># Features</h3>
48+
4349
This plugin currently only comes with a CSV runner which means it is only able to parse CSV files out of the box. There will be more info on how to add runners added later.
4450

4551
<h3># Documentation</h3>
52+
4653
http://laravel-importer.readthedocs.io/en/latest/
4754

4855
<h3># Example configuration</h3>
56+
4957
`config/importer.php`:
58+
5059
```php
5160
return [
5261
/***********************************************************
@@ -71,4 +80,5 @@ return [
7180
```
7281

7382
<h3># Contributing</h3>
83+
7484
Pull requests for new features are welcome as long as they include tests for it as well.

0 commit comments

Comments
 (0)