Skip to content

Commit

Permalink
Merge pull request #15 from DeBoerTool/php-8
Browse files Browse the repository at this point in the history
[chore] Upgrade to php 8
  • Loading branch information
danielsdeboer authored Aug 23, 2021
2 parents db1f124 + 746bbd8 commit 1cc8b9e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/vendor
composer.lock
phpunit.xml

## Directory-based project format:
.idea/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ODBC Driver for Laravel

A simple ODBC driver for Laravel 5.5+.
A simple ODBC driver for Laravel 6.0+. Requires PHP 8.

### Prerequisites

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
"driver"
],
"require": {
"php": ">=7.2.0",
"php": "^8.0",
"ext-pdo": "*",
"illuminate/support": "5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
"illuminate/database": "5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0"
"illuminate/support": "^6.0|^7.0|^8.0",
"illuminate/database": "^6.0|^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "^3.1"
},
"autoload": {
Expand Down Expand Up @@ -54,4 +54,4 @@
"config": {
"sort-packages": true
}
}
}

0 comments on commit 1cc8b9e

Please sign in to comment.