Skip to content

Commit 51d15ce

Browse files
authored
Merge pull request #24 from moufmouf/upgrade_laravel7
Adding Laravel 7 compatibility
2 parents 7e2d0dd + 7367208 commit 51d15ce

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
"require": {
2020
"php": ">=7.2",
2121
"thecodingmachine/graphqlite": "^4",
22-
"illuminate/console": "^5.7|^6.0",
23-
"illuminate/container": "^5.7|^6.0",
24-
"illuminate/support": "^5.7|^6.0",
25-
"illuminate/cache": "^5.7|^6.0",
22+
"illuminate/console": "^5.7|^6.0|^7",
23+
"illuminate/container": "^5.7|^6.0|^7",
24+
"illuminate/support": "^5.7|^6.0|^7",
25+
"illuminate/cache": "^5.7|^6.0|^7",
2626
"symfony/psr-http-message-bridge": "^1.3.0 || ^2",
2727
"laminas/laminas-diactoros": "^2.2.2",
2828
"symfony/cache": "^4.3 || ^5"
2929
},
3030
"require-dev": {
31-
"orchestra/testbench": "^3.7.7 || ^4",
31+
"orchestra/testbench": "^3.7.7 || ^4 || ^5",
3232
"phpunit/phpunit": "^7.5.4 || ^8.3",
3333
"ext-sqlite3": "*"
3434
},

tests/Providers/GraphQLiteServiceProviderTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,5 +169,6 @@ public function testCachePurger(): void
169169
{
170170
$cachePurger = $this->app->make(CachePurger::class);
171171
$cachePurger->handle();
172+
$this->assertTrue(true);
172173
}
173174
}

0 commit comments

Comments
 (0)