Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ php:
- 7.2

env:
- TESTBENCH_VERSION="3.6.*" PHPUNIT_VERSION="7.0.*" # Laravel 5.6
- TESTBENCH_VERSION="3.6.*" # Laravel 5.6
- TESTBENCH_VERSION="3.7.*" # Laravel 5.7

install:
- travis_retry composer self-update
- travis_retry composer require orchestra/testbench:${TESTBENCH_VERSION} phpunit/phpunit:${PHPUNIT_VERSION}
- travis_retry composer require orchestra/testbench:${TESTBENCH_VERSION}
- travis_retry composer install --no-interaction

script:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ An on-the-fly GraphQL Schema generator from Eloquent models for Laravel.
| 5.4.x | 1.0.x |
| 5.5.x | 1.0.x |
| 5.6.x | 2.0.x |
| 5.7.x | 2.1.x |

## Installation

Expand Down
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,12 @@
],
"require": {
"php": ">=7.1.0",
"illuminate/support": "5.6.*",
"illuminate/support": "5.6.*|5.7.*",
"webonyx/graphql-php": "^0.12.0",
"ext-json": "*"
},
"require-dev": {
"orchestra/database": "^3.4",
"orchestra/testbench": "^3.4",
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "^7.1"
},
"autoload": {
Expand Down
2 changes: 0 additions & 2 deletions tests/IntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
use Bakery\BakeryServiceProvider;
use Illuminate\Support\Facades\Hash;
use Illuminate\Contracts\Auth\Access\Gate;
use Orchestra\Database\ConsoleServiceProvider;
use Bakery\Tests\Fixtures\IntegrationTestSchema;
use Illuminate\Foundation\Testing\Concerns\InteractsWithDatabase;

Expand Down Expand Up @@ -60,7 +59,6 @@ protected function setUp()
protected function getPackageProviders($app)
{
return [
ConsoleServiceProvider::class,
BakeryServiceProvider::class,
];
}
Expand Down