|
3 | 3 | return [
|
4 | 4 |
|
5 | 5 | /*
|
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 | + */ |
10 | 13 |
|
11 | 14 | 'base_url' => env('APP_URL', 'http://localhost'),
|
12 | 15 |
|
13 | 16 | /*
|
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 | + */ |
18 | 24 |
|
19 | 25 | 'filename' => '{timestamp}_{app}_collection.json',
|
20 | 26 |
|
21 | 27 | /*
|
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 | + */ |
26 | 35 |
|
27 | 36 | 'structured' => false,
|
28 | 37 |
|
29 | 38 | /*
|
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 | + */ |
36 | 48 |
|
37 | 49 | 'auth_middleware' => 'auth:api',
|
38 | 50 |
|
39 | 51 | /*
|
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 | + */ |
44 | 59 |
|
45 | 60 | 'headers' => [
|
46 | 61 | [
|
|
54 | 69 | ],
|
55 | 70 |
|
56 | 71 | /*
|
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 | + */ |
61 | 79 |
|
62 | 80 | 'enable_formdata' => false,
|
63 | 81 |
|
64 | 82 | /*
|
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 | + */ |
69 | 90 |
|
70 | 91 | 'formdata' => [
|
71 | 92 | // 'email' => '[email protected]',
|
72 | 93 | // 'password' => 'changeme',
|
73 | 94 | ],
|
74 | 95 |
|
75 | 96 | /*
|
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 | + */ |
80 | 104 |
|
81 | 105 | 'include_middleware' => ['api'],
|
82 | 106 |
|
83 | 107 | /*
|
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 | + |
88 | 116 | 'disk' => 'local',
|
| 117 | + |
89 | 118 | ];
|
0 commit comments