Skip to content

Commit 66c2a62

Browse files
committed
remove version
1 parent e4e5ecc commit 66c2a62

File tree

4 files changed

+7
-990
lines changed

4 files changed

+7
-990
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.idea/
22
vendor/
3-
.DS_Store
3+
.DS_Store
4+
composer.lock

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ $ composer require buildcode/laravel-database-emails
1616
If you're running Laravel 5.5 or later you may skip this step. Add the service provider to your application.
1717

1818
```php
19-
Buildcode\LaravelGhost\LaravelDatabaseEmailsServiceProvider::class,
19+
Buildcode\LaravelDatabaseEmails\LaravelDatabaseEmailsServiceProvider::class,
2020
```
2121

2222
Publish the configuration file.
2323

2424
```bash
25-
$ php artisan vendor:publish --provider=Buildcode\\LaravelGhost\\LaravelDatabaseEmailsServiceProvider
25+
$ php artisan vendor:publish --provider=Buildcode\\LaravelDatabaseEmails\\LaravelDatabaseEmailsServiceProvider
2626
```
2727

2828
Create the e-mails database table migration.

composer.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
"name": "buildcode/laravel-database-emails",
33
"description": "Store and send e-mails using the database",
44
"license": "MIT",
5-
"version": "1.0.0",
65
"authors": [
76
{
87
"name": "Marick van Tuil",
98
"email": "[email protected]"
109
}
1110
],
1211
"require": {
13-
"illuminate/database": "^5.4",
14-
"illuminate/console": "^5.4",
15-
"illuminate/validation": "^5.4"
12+
"illuminate/database": "^5.2",
13+
"illuminate/console": "^5.2",
14+
"illuminate/validation": "^5.2"
1615
},
1716
"autoload": {
1817
"psr-4": {

0 commit comments

Comments
 (0)