Skip to content

Commit

Permalink
Merge pull request #67 from jeremykenedy/testing
Browse files Browse the repository at this point in the history
Testing
  • Loading branch information
jeremykenedy authored May 22, 2020
2 parents 44bee8a + d9f7f33 commit 37f0ead
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ before_script:
- php artisan ui vue --auth
- composer dump-autoload
- php artisan clear-compiled

script: vendor/bin/phpunit
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
}
},
"require-dev": {
"illuminate/support": "^5.7",
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "^7.0",
"laravel/laravel": "5.7.*"
"orchestra/testbench": "^5.2",
"laravel/tinker": "^2.4",
"illuminate/support": "^7.12",
"laravel/laravel": "^7.12"
},
"extra": {
"laravel": {
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class TestCase extends OrchestraTestCase
*
* @return jeremykenedy\laravelusers\LaravelUsersServiceProvider
*/
protected function getPackageProviders($app)
protected function getPackageProviders($app): void
{
return [LaravelUsersServiceProvider::class];
}
Expand All @@ -27,7 +27,7 @@ protected function getPackageProviders($app)
*
* @return array
*/
protected function getPackageAliases($app)
protected function getPackageAliases($app): void
{
return [
'UsersManagementController' => LaravelUsersFacade::class,
Expand Down

0 comments on commit 37f0ead

Please sign in to comment.