Skip to content

Commit

Permalink
Merge pull request #9 from owenvoke/feature/laravel-zero-7
Browse files Browse the repository at this point in the history
Update to use Laravel Zero 7
  • Loading branch information
nunomaduro authored May 20, 2020
2 parents 21ba78c + 6081262 commit 9be43c7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
Binary file modified builds/laravel-zero
Binary file not shown.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
}
],
"require": {
"php": "^7.2"
"php": "^7.2.5"
},
"require-dev": {
"laravel-zero/framework": "^6.0",
"laravel-zero/framework": "^7.0",
"padraic/phar-updater": "^1.0.6"
},
"autoload": {
Expand Down
5 changes: 3 additions & 2 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@
|
| This value determines the "environment" your application is currently
| running in. This may determine how you prefer to configure various
| services your application utilizes. Should be true in production.
| services the application utilizes. This can be overridden using
| the global command line "--env" option when calling commands.
|
*/

'production' => false,
'env' => 'development',

/*
|--------------------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="NunoMaduro\Collision\Adapters\Phpunit\Listener"/>
</listeners>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
Expand Down

0 comments on commit 9be43c7

Please sign in to comment.