Skip to content

Commit

Permalink
Drop support for Laravel < 5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
forxer committed Mar 11, 2019
1 parent 998ec19 commit c4fb4c4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 16 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

2.0.0 (2019-03-11)
------------------

- Drop support for Laravel < 5.8
- Replace getForeignKey method call by getForeignKeyName

1.2.0 (2019-03-07)
------------------

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"license": "MIT",
"require": {
"laravel/framework": "5.4.*|5.5.*|5.6.*|5.7.*|5.8.*"
"laravel/framework": "5.8.*"
},
"autoload": {
"psr-4": {
Expand Down
16 changes: 1 addition & 15 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Laravel Database Extension
==========================

Includes some extensions/improvements to the Database section of Laravel Framework 5.4+
Includes some extensions/improvements to the Database section of Laravel Framework

* [Installation](#installation)
* [Usage](#usage)
Expand All @@ -18,20 +18,6 @@ With Composer:
composer require axn/laravel-database-extension
```

In Laravel 5.5 the service provider is automatically included.
In older versions of the framework, simply add this service provider to the array
of providers in `config/app.php`:

```php
// config/app.php

'provider' => [
//...
Axn\Illuminate\ServiceProvider::class,
//...
];
```

Usage
-----

Expand Down

0 comments on commit c4fb4c4

Please sign in to comment.