Skip to content

Commit

Permalink
Merge pull request #13 from Soapbox/feature/add-laravel-6-support
Browse files Browse the repository at this point in the history
[Feature] Added laravel 6 support
  • Loading branch information
JaskirtPooni authored Jan 21, 2020
2 parents dd80a1d + 6858f76 commit 9ec0e98
Show file tree
Hide file tree
Showing 4 changed files with 2,233 additions and 858 deletions.
17 changes: 4 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,16 @@
language: php

php:
- 7.1
- 7.2
- 7.3
- 7.4

services:
- mysql

dist: trusty
dist: xenial
sudo: required

addons:
apt:
sources:
- mysql-5.7-trusty
packages:
- mysql-server
- mysql-client

before_install:
- sudo mysql_upgrade --force

before_script:
- mysql -u root -e "CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'secret';"
- mysql -u root -e "GRANT ALL ON *.* TO 'homestead'@'localhost';"
Expand Down
16 changes: 11 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,21 @@
"email": "justin@soapboxhq.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/soapbox/eloquent-model-validation"
}
],
"require": {
"illuminate/support": "^5.4",
"illuminate/database": "^5.4",
"illuminate/support": "^6.0",
"illuminate/database": "^6.0",
"symfony/cache": "^3.3",
"jaspaul/eloquent-model-validation": "^0.1.1"
"jaspaul/eloquent-model-validation": "^1.0"
},
"require-dev": {
"orchestra/testbench": "^3.4",
"phpunit/phpunit": "~5.7",
"orchestra/testbench": "^4.0",
"phpunit/phpunit": "~8.0",
"fzaninotto/faker": "^1.6",
"squizlabs/php_codesniffer": "^3.0"
},
Expand Down
Loading

0 comments on commit 9ec0e98

Please sign in to comment.