Skip to content

Commit

Permalink
feat: support Laravel 7 #43
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkcup committed Aug 30, 2020
1 parent bfe391c commit cac604f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"type": "library",
"require": {
"php": "^7.2",
"laravel/framework": "^6.0",
"laravel/socialite": "~4.1",
"doctrine/dbal": "^2.9",
"phlak/semver": "^2.0",
"laravel/ui": "^1.0"
"laravel/framework": ">=v6.18.37",
"laravel/socialite": ">=v4.4.1",
"doctrine/dbal": ">=2.9",
"phlak/semver": ">=2.0",
"laravel/ui": ">=v1.2.0"
},
"license": "MIT",
"authors": [
Expand Down Expand Up @@ -37,9 +37,9 @@
}
},
"require-dev": {
"orchestra/testbench": "^4.0",
"squizlabs/php_codesniffer": "^3.4",
"fzaninotto/faker": "^1.8",
"phpunit/phpunit": "^8.2"
"orchestra/testbench": ">=v4.8.0",
"squizlabs/php_codesniffer": ">=3.5.6",
"fzaninotto/faker": ">=v1.9.1",
"phpunit/phpunit": ">=8.5.8"
}
}
1 change: 1 addition & 0 deletions phpunit.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env bash
STARTED_AT=$(date +%s)

rm -f vendor/orchestra/testbench-core/laravel/migrations/2014_10_12_100000_create_password_resets_table.php
./vendor/bin/phpunit --stop-on-defect --coverage-text tests/
if [ $? -ne 0 ]; then
exit 1
Expand Down

0 comments on commit cac604f

Please sign in to comment.