Skip to content

Commit

Permalink
Add support for Laravel 8
Browse files Browse the repository at this point in the history
  • Loading branch information
JunaidQadirB committed Sep 14, 2020
1 parent 3387439 commit cb39ad0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
],
"require": {
"php": "^7.2",
"laravel/framework": "^6.0|^7.0"
"laravel/framework": "^6.0|^7.0|^8.0"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0",
"orchestra/testbench": "^4.0|^5.0|v6.0.0",
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
Expand Down
1 change: 1 addition & 0 deletions tests/Feature/CrayCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public function test_it_publishes_stubs()

public function test_it_scaffolds_crud_artifacts()
{

//Make sure no artifact related to Post exists
$this->assertFileDoesNotExist(app_path('Post.php'));
$this->assertFileDoesNotExist(app_path('Http/Controllers/PostController.php'));
Expand Down

0 comments on commit cb39ad0

Please sign in to comment.