Skip to content

Commit 65ae51b

Browse files
authored
Merge pull request #28 from AndreasElia/chore/readme
2 parents b38c9c9 + 9f98666 commit 65ae51b

File tree

1 file changed

+67
-38
lines changed

1 file changed

+67
-38
lines changed

config/api-postman.php

Lines changed: 67 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -3,44 +3,59 @@
33
return [
44

55
/*
6-
* Base URL.
7-
*
8-
* The base URL for all of your endpoints.
9-
*/
6+
|--------------------------------------------------------------------------
7+
| Base URL
8+
|--------------------------------------------------------------------------
9+
|
10+
| The base URL for all of your endpoints.
11+
|
12+
*/
1013

1114
'base_url' => env('APP_URL', 'http://localhost'),
1215

1316
/*
14-
* Collection filename.
15-
*
16-
* The name for the collection file to be saved.
17-
*/
17+
|--------------------------------------------------------------------------
18+
| Collection Filename
19+
|--------------------------------------------------------------------------
20+
|
21+
| The name for the collection file to be saved.
22+
|
23+
*/
1824

1925
'filename' => '{timestamp}_{app}_collection.json',
2026

2127
/*
22-
* Structured.
23-
*
24-
* If you want folders to be generated based on namespace.
25-
*/
28+
|--------------------------------------------------------------------------
29+
| Structured
30+
|--------------------------------------------------------------------------
31+
|
32+
| If you want folders to be generated based on namespace.
33+
|
34+
*/
2635

2736
'structured' => false,
2837

2938
/*
30-
* Auth Middleware.
31-
*
32-
* The middleware which wraps your authenticated API routes.
33-
*
34-
* E.g. auth:api, auth:sanctum
35-
*/
39+
|--------------------------------------------------------------------------
40+
| Auth Middleware
41+
|--------------------------------------------------------------------------
42+
|
43+
| The middleware which wraps your authenticated API routes.
44+
|
45+
| E.g. auth:api, auth:sanctum
46+
|
47+
*/
3648

3749
'auth_middleware' => 'auth:api',
3850

3951
/*
40-
* Headers.
41-
*
42-
* The headers applied to all routes within the collection.
43-
*/
52+
|--------------------------------------------------------------------------
53+
| Headers
54+
|--------------------------------------------------------------------------
55+
|
56+
| The headers applied to all routes within the collection.
57+
|
58+
*/
4459

4560
'headers' => [
4661
[
@@ -54,36 +69,50 @@
5469
],
5570

5671
/*
57-
* Enable Form Data.
58-
*
59-
* Determines whether or not form data should be handled.
60-
*/
72+
|--------------------------------------------------------------------------
73+
| Enable Form Data
74+
|--------------------------------------------------------------------------
75+
|
76+
| Determines whether or not form data should be handled.
77+
|
78+
*/
6179

6280
'enable_formdata' => false,
6381

6482
/*
65-
* Form Data.
66-
*
67-
* The key/values to requests for form data dummy information.
68-
*/
83+
|--------------------------------------------------------------------------
84+
| Form Data
85+
|--------------------------------------------------------------------------
86+
|
87+
| The key/values to requests for form data dummy information.
88+
|
89+
*/
6990

7091
'formdata' => [
7192
// 'email' => '[email protected]',
7293
// 'password' => 'changeme',
7394
],
7495

7596
/*
76-
* Include Middleware.
77-
*
78-
* The middleware items you want to include for export.
79-
*/
97+
|--------------------------------------------------------------------------
98+
| Include Middleware
99+
|--------------------------------------------------------------------------
100+
|
101+
| The routes of the included middleware are included in the export.
102+
|
103+
*/
80104

81105
'include_middleware' => ['api'],
82106

83107
/*
84-
* Disk Driver.
85-
*
86-
* Specify the configured disk for storing the postman collection file.
87-
*/
108+
|--------------------------------------------------------------------------
109+
| Disk Driver
110+
|--------------------------------------------------------------------------
111+
|
112+
| Specify the configured disk for storing the postman collection file.
113+
|
114+
*/
115+
88116
'disk' => 'local',
117+
89118
];

0 commit comments

Comments
 (0)