-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
api-postman.php
187 lines (157 loc) · 5.46 KB
/
api-postman.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<?php
return [
/*
|--------------------------------------------------------------------------
| Base URL
|--------------------------------------------------------------------------
|
| The base URL for all of your endpoints.
|
*/
'base_url' => env('APP_URL', 'http://localhost'),
/*
|--------------------------------------------------------------------------
| Collection Filename
|--------------------------------------------------------------------------
|
| The name for the collection file to be saved.
|
*/
'filename' => '{timestamp}_{app}_collection.json',
/*
|--------------------------------------------------------------------------
| Structured
|--------------------------------------------------------------------------
|
| If you want folders to be generated based on namespace.
|
| Set "crud_folders" to "false" if you don't want the api, index, store, show etc. folders.
|
*/
'structured' => false,
'crud_folders' => true,
/*
|--------------------------------------------------------------------------
| Auth Middleware
|--------------------------------------------------------------------------
|
| The middleware which wraps your authenticated API routes.
|
| E.g. auth:api, auth:sanctum
|
*/
'auth_middleware' => 'auth:api',
/*
|--------------------------------------------------------------------------
| Headers
|--------------------------------------------------------------------------
|
| The headers applied to all routes within the collection.
|
*/
'headers' => [
[
'key' => 'Accept',
'value' => 'application/json',
],
[
'key' => 'Content-Type',
'value' => 'application/json',
],
],
/*
|--------------------------------------------------------------------------
| Events
|--------------------------------------------------------------------------
|
| If you want to configure the prequest and test scripts for the collection,
| then please provide paths to the JavaScript files.
|
*/
'prerequest_script' => '', // This script will execute before every request in the collection.
'test_script' => '', // This script will execute after every request in the collection.
/*
|--------------------------------------------------------------------------
| Include Doc Comments
|--------------------------------------------------------------------------
|
| Determines whether to set the PHP Doc comments to the description
| in postman.
|
*/
'include_doc_comments' => false,
/*
|--------------------------------------------------------------------------
| Enable Form Data
|--------------------------------------------------------------------------
|
| Determines whether or not form data should be handled.
|
*/
'enable_formdata' => false,
/*
|--------------------------------------------------------------------------
| Parse Form Request Rules
|--------------------------------------------------------------------------
|
| If you want form requests to be printed in the field description field,
| and if so, whether they will be in a human readable form.
|
*/
'print_rules' => true, // @requires: 'enable_formdata' === true
'rules_to_human_readable' => true, // @requires: 'parse_rules' === true
/*
|--------------------------------------------------------------------------
| Form Data
|--------------------------------------------------------------------------
|
| The key/values to requests for form data dummy information.
|
*/
'formdata' => [
// 'email' => '[email protected]',
// 'password' => 'changeme',
],
/*
|--------------------------------------------------------------------------
| Include Middleware
|--------------------------------------------------------------------------
|
| The routes of the included middleware are included in the export.
|
*/
'include_middleware' => ['api'],
/*
|--------------------------------------------------------------------------
| Disk Driver
|--------------------------------------------------------------------------
|
| Specify the configured disk for storing the postman collection file.
|
*/
'disk' => 'local',
/*
|--------------------------------------------------------------------------
| Authentication
|--------------------------------------------------------------------------
|
| Specify the authentication to be used for the endpoints.
|
*/
'authentication' => [
'method' => env('POSTMAN_EXPORT_AUTH_METHOD'),
'token' => env('POSTMAN_EXPORT_AUTH_TOKEN'),
],
/*
|--------------------------------------------------------------------------
| Protocol Profile Behavior
|--------------------------------------------------------------------------
|
| Set of configurations used to alter the usual behavior of sending the request.
| These can be defined in a collection at Item or ItemGroup level which will be inherited if applicable.
|
*/
'protocol_profile_behavior' => [
'disable_body_pruning' => false, // Control request body pruning for following methods: GET, COPY, HEAD, PURGE, UNLOCK
],
];