We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97144d5 commit 7d28e90Copy full SHA for 7d28e90
README.md
@@ -0,0 +1,30 @@
1
+# Laravel API Boilerplate
2
+```
3
+A boilerplate to develop secured and conventional API on top of Laravel 5.6.
4
5
+Dependencies:
6
+* PHP ~7.1.0
7
+* [Laravel 5.6](https://laravel.com/docs/5.6/)
8
+* [JWT Auth 1.0.*](https://github.com/tymondesigns/jwt-auth) Package
9
+* [Dingo Api](https://github.com/dingo/api) Package
10
+
11
+## Usage
12
+### 1. Clone the project
13
+```bash
14
+git clone https://github.com/mystroken/laravel-api-boilerplate.git destination_folder
15
16
+### 2. Install project dependencies
17
18
+composer install
19
20
+### 3. Configure the project
21
22
+php artisan key:generate
23
24
25
+php artisan jwt:secret
26
27
28
+```config/api.php```
29
30
+```config/jwt.php```
0 commit comments