Skip to content

Commit

Permalink
Merge pull request #42 from stojankukrika/master
Browse files Browse the repository at this point in the history
update dependency packages to laravel 9
  • Loading branch information
EmadAdly committed Mar 9, 2022
2 parents e5e6f92 + b43fa09 commit 2b7456e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
}
],
"require": {
"php": "^7.0|^8.0",
"illuminate/support": "6.*|7.*|8.*"
"php": "^7.0|^8.0|^8.1",
"illuminate/support": "6.*|7.*|8.*|9.*"

},
"require-dev": {
"phpunit/phpunit": "~6.0|7.0.*",
"laravel/framework": "6.*|7.*|8.*",
"squizlabs/php_codesniffer": "^2.3"
"phpunit/phpunit": "~6.0|7.0.*|8.0.*|9.0.*",
"laravel/framework": "6.*|7.*|8.*|9.*",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions tests/DemoTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
// use PHPUnit\Framework\TestCase;
use PHPUnit\Framework\TestCase;
// use Illuminate\Foundation\Testing\TestCase as BaseTestCase;

class DemoTest extends PHPUnit_Framework_TestCase
class DemoTest extends TestCase
{
public function testSomethingIsTrue()
{
Expand Down

0 comments on commit 2b7456e

Please sign in to comment.