Skip to content

Commit d0613d2

Browse files
authored
✨ Add Laravel 6 support (#35)
1 parent 7241964 commit d0613d2

12 files changed

+30
-184
lines changed

.scrutinizer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ checks:
1010

1111
tools:
1212
external_code_coverage:
13-
runs: 24
13+
runs: 26
1414
timeout: 900

.travis.yml

+15-9
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,27 @@ php:
1010
- 7.3
1111

1212
env:
13-
- ILLUMINATE_VERSION=5.1.* TESTBENCH_VERSION=3.1.* PHPUNIT_VERSION=^5.2
14-
- ILLUMINATE_VERSION=5.2.* TESTBENCH_VERSION=3.2.* PHPUNIT_VERSION=^5.2
15-
- ILLUMINATE_VERSION=5.3.* TESTBENCH_VERSION=3.3.* PHPUNIT_VERSION=^5.2
16-
- ILLUMINATE_VERSION=5.4.* TESTBENCH_VERSION=3.4.* PHPUNIT_VERSION=^5.2
17-
- ILLUMINATE_VERSION=5.5.* TESTBENCH_VERSION=3.5.* PHPUNIT_VERSION=^6.0
18-
- ILLUMINATE_VERSION=5.6.* TESTBENCH_VERSION=3.6.* PHPUNIT_VERSION=^7.0
19-
- ILLUMINATE_VERSION=5.7.* TESTBENCH_VERSION=3.7.* PHPUNIT_VERSION=^7.0
20-
- ILLUMINATE_VERSION=5.8.* TESTBENCH_VERSION=3.8.* PHPUNIT_VERSION=^7.0
13+
- ILLUMINATE_VERSION=5.1.* PHPUNIT_VERSION=^5.2
14+
- ILLUMINATE_VERSION=5.2.* PHPUNIT_VERSION=^5.2
15+
- ILLUMINATE_VERSION=5.3.* PHPUNIT_VERSION=^5.2
16+
- ILLUMINATE_VERSION=5.4.* PHPUNIT_VERSION=^5.2
17+
- ILLUMINATE_VERSION=5.5.* PHPUNIT_VERSION=^6.0
18+
- ILLUMINATE_VERSION=5.6.* PHPUNIT_VERSION=^7.0
19+
- ILLUMINATE_VERSION=5.7.* PHPUNIT_VERSION=^7.0
20+
- ILLUMINATE_VERSION=5.8.* PHPUNIT_VERSION=^7.0
21+
- ILLUMINATE_VERSION=^6.0 PHPUNIT_VERSION=^7.0
22+
23+
matrix:
24+
exclude:
25+
# Laravel 6 does not support PHP 7.1
26+
- php: 7.1
27+
env: ILLUMINATE_VERSION=^6.0 PHPUNIT_VERSION=^7.0
2128

2229
dist: xenial
2330
sudo: false
2431

2532
before_install:
2633
- composer require illuminate/support:${ILLUMINATE_VERSION} --no-update
27-
- composer require orchestra/testbench:${TESTBENCH_VERSION} --dev --no-update
2834
- composer require phpunit/phpunit:"${PHPUNIT_VERSION}" --dev --no-update
2935

3036
install:

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
"guzzlehttp/guzzle": "^6.2",
2929
"guzzlehttp/promises": "^1.0",
3030
"guzzlehttp/psr7": "^1.4",
31-
"illuminate/support": "^5.1,<5.9",
31+
"illuminate/support": "^5.1 || ^6.0",
3232
"psr/http-message": "^1.0"
3333
},
3434
"require-dev": {
35-
"orchestra/testbench": "^3.1",
35+
"illuminate/routing": "^5.1 || ^6.0",
3636
"phpunit/phpunit": "^5.2 || ^6.0 || ^7.0"
3737
},
3838
"autoload": {

tests/Integration/BitLyShortenerTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use GuzzleHttp\Promise\PromiseInterface;
77
use LaraCrafts\UrlShortener\Http\BitLyShortener;
88
use LaraCrafts\UrlShortener\Tests\Concerns\HasUrlAssertions;
9-
use Orchestra\Testbench\TestCase;
9+
use PHPUnit\Framework\TestCase;
1010

1111
class BitLyShortenerTest extends TestCase
1212
{
@@ -24,7 +24,7 @@ public function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
if (!$token = env('BIT_LY_API_TOKEN')) {
27+
if (!$token = getenv('BIT_LY_API_TOKEN')) {
2828
$this->markTestSkipped('No Bit.ly API token set');
2929
}
3030

tests/Integration/FirebaseShortenerTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use GuzzleHttp\Promise\PromiseInterface;
77
use LaraCrafts\UrlShortener\Http\FirebaseShortener;
88
use LaraCrafts\UrlShortener\Tests\Concerns\HasUrlAssertions;
9-
use Orchestra\Testbench\TestCase;
9+
use PHPUnit\Framework\TestCase;
1010

1111
class FirebaseShortenerTest extends TestCase
1212
{
@@ -29,11 +29,11 @@ public function setUp(): void
2929
{
3030
parent::setUp();
3131

32-
if (!$token = env('FIREBASE_API_TOKEN')) {
32+
if (!$token = getenv('FIREBASE_API_TOKEN')) {
3333
$this->markTestSkipped('No Firebase API token set');
3434
}
3535

36-
if (!$prefix = env('FIREBASE_URI_PREFIX')) {
36+
if (!$prefix = getenv('FIREBASE_URI_PREFIX')) {
3737
$this->markTestSkipped('No Firebase URI prefix set');
3838
}
3939

tests/Integration/IsGdShortenerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use GuzzleHttp\Promise\PromiseInterface;
77
use LaraCrafts\UrlShortener\Http\IsGdShortener;
88
use LaraCrafts\UrlShortener\Tests\Concerns\HasUrlAssertions;
9-
use Orchestra\Testbench\TestCase;
9+
use PHPUnit\Framework\TestCase;
1010

1111
class IsGdShortenerTest extends TestCase
1212
{

tests/Integration/OuoIoShortenerTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Illuminate\Support\Str;
88
use LaraCrafts\UrlShortener\Http\OuoIoShortener;
99
use LaraCrafts\UrlShortener\Tests\Concerns\HasUrlAssertions;
10-
use Orchestra\Testbench\TestCase;
10+
use PHPUnit\Framework\TestCase;
1111

1212
class OuoIoShortenerTest extends TestCase
1313
{
@@ -25,7 +25,7 @@ public function setUp(): void
2525
{
2626
parent::setUp();
2727

28-
if (!$token = env('OUO_IO_API_TOKEN')) {
28+
if (!$token = getenv('OUO_IO_API_TOKEN')) {
2929
$this->markTestSkipped('No Ouo.io API token set');
3030
}
3131

tests/Integration/ShorteStShortenerTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use GuzzleHttp\Promise\PromiseInterface;
77
use LaraCrafts\UrlShortener\Http\ShorteStShortener;
88
use LaraCrafts\UrlShortener\Tests\Concerns\HasUrlAssertions;
9-
use Orchestra\Testbench\TestCase;
9+
use PHPUnit\Framework\TestCase;
1010

1111
class ShorteStShortenerTest extends TestCase
1212
{
@@ -24,7 +24,7 @@ public function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
if (!$token = env('SHORTE_ST_API_TOKEN')) {
27+
if (!$token = getenv('SHORTE_ST_API_TOKEN')) {
2828
$this->markTestSkipped('No Shorte.st API token set');
2929
}
3030

tests/Integration/TinyUrlShortenerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use GuzzleHttp\Promise\PromiseInterface;
77
use LaraCrafts\UrlShortener\Http\TinyUrlShortener;
88
use LaraCrafts\UrlShortener\Tests\Concerns\HasUrlAssertions;
9-
use Orchestra\Testbench\TestCase;
9+
use PHPUnit\Framework\TestCase;
1010

1111
class TinyUrlShortenerTest extends TestCase
1212
{

tests/Integration/VGdShortenerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Illuminate\Support\Str;
88
use LaraCrafts\UrlShortener\Http\IsGdShortener;
99
use LaraCrafts\UrlShortener\Tests\Concerns\HasUrlAssertions;
10-
use Orchestra\Testbench\TestCase;
10+
use PHPUnit\Framework\TestCase;
1111

1212
class VGdShortenerTest extends TestCase
1313
{

tests/Unit/ManagerTest.php

-115
This file was deleted.

tests/Unit/ProviderTest.php

-45
This file was deleted.

0 commit comments

Comments
 (0)