Skip to content

Commit 2640a6b

Browse files
fernandocoronatomfFernando
authored andcommitted
Support laravel 6.x
1 parent caf8f78 commit 2640a6b

File tree

7 files changed

+755
-597
lines changed

7 files changed

+755
-597
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ dist: xenial
33
language: php
44

55
php:
6-
- 7.0
7-
- 7.1
6+
- 7.3
87

98
before_script:
109
- COMPOSER_DISCARD_CHANGES=1 composer update --prefer-dist --no-interaction --no-suggest
1110

1211
sudo: false
1312

1413
script:
15-
- composer test
14+
- composer test

composer.json

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "ph4r05/laravel-queue-database-ph4",
33
"description": "Laravel Database queue driver with optimistic locking",
4+
"version": "dev-master",
45
"license": "MIT",
56
"authors": [
67
{
@@ -10,15 +11,15 @@
1011
}
1112
],
1213
"require": {
13-
"php": ">=7.0",
14-
"illuminate/database": "5.5.* || 5.6.* || 5.7.* || 5.8.*",
15-
"illuminate/support": "5.5.* || 5.6.* || 5.7.* || 5.8.*",
16-
"illuminate/queue": "5.5.* || 5.6.* || 5.7.* || 5.8.*"
14+
"php": "^7.2",
15+
"illuminate/support": "^6.2",
16+
"illuminate/database": "6.*",
17+
"illuminate/queue": "6.*"
1718
},
1819
"require-dev": {
19-
"phpunit/phpunit": "~6.0",
20-
"illuminate/events": "5.5.* || 5.6.* || 5.7.* || 5.8.*",
21-
"mockery/mockery": "~1.0"
20+
"phpunit/phpunit": " ^7.0",
21+
"mockery/mockery": "~1.0",
22+
"ext-json": "*"
2223
},
2324
"autoload": {
2425
"psr-4": {
@@ -31,9 +32,6 @@
3132
}
3233
},
3334
"extra": {
34-
"branch-alias": {
35-
"dev-master": "0.1.4-dev"
36-
},
3735
"laravel": {
3836
"providers": [
3937
"ph4r05\\LaravelDatabasePh4\\LaravelQueuePh4ServiceProvider"

0 commit comments

Comments
 (0)