Skip to content

Commit

Permalink
update 7.4 (apiato#399)
Browse files Browse the repository at this point in the history
* adapt .gitignore file

* Add SIGNED Middleware

* update readme to laravel 5.6 (apiato#397)

* small fix
  • Loading branch information
johannesschobel authored Apr 5, 2018
1 parent 25eeea9 commit 1717316
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Apiato

<h3 align="center">Build great API's faster | with PHP and laravel 5.5</h3>
<h3 align="center">Build great API's faster | with PHP and laravel 5.6</h3>

<p align="center">
<img src="https://github.com/apiato/documentation/blob/master/images/apiato-icon-medium.png" alt="Apiato Logo"/>
Expand Down
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@

/node_modules
/public/storage
/public/hot
/public/storage
/storage/*.key
/vendor
/.idea
/.vscode
/.vagrant
Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
.env
storage/logs/laravel.log
/public/api-rendered-markdowns/*
/public/api/
/public/uploads/
/laradock*/
/.idea
_ide_helper*.php
.phpstorm.meta.php
1 change: 1 addition & 0 deletions app/Ship/Kernels/HttpKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ class HttpKernel extends LaravelHttpKernel
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
'can' => \Illuminate\Auth\Middleware\Authorize::class,
'auth' => \Illuminate\Auth\Middleware\Authenticate::class,
'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
// 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
// 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
];
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<env name="DB_CONNECTION" value="testing_sqlite_in_memory"/>
<env name="DB_HOST" value="127.0.0.1"/>
<env name="DB_PORT" value="3306"/>
<env name="DB_NAME" value="apiato_db"/>
<env name="DB_DATABASE" value="apiato_db"/>
<env name="DB_USERNAME" value="apiato_db"/>
<env name="DB_PASSWORD" value="secret"/>
</php>
Expand Down

0 comments on commit 1717316

Please sign in to comment.