friendship ended with social-app. php is my new best friend
1docs/ 2├── .vitepress/ 3│ ├── config.js # VitePress configuration 4│ └── theme/ # Custom theme (if needed) 5├── public/ 6│ ├── logo.png # Your logo 7│ └── favicon.ico # Favicon 8├── index.md # Homepage 9├── guide/ 10│ ├── index.md # Overview content from fetch-http-package-overview.md 11│ ├── installation.md # Installation instructions 12│ ├── quickstart.md # Quickstart guide from fetch-quickstart.md 13│ ├── making-requests.md # Basic request usage from fetch-http-client-usage-guide.md 14│ ├── helper-functions.md # Helper functions guide from helper-functions-guide.md 15│ ├── working-with-responses.md # From working-with-response-objects.md 16│ ├── request-configuration.md # From working-with-request-objects.md 17│ ├── authentication.md # Authentication section from usage guides 18│ ├── error-handling.md # Error handling patterns 19│ ├── logging.md # Logging configuration 20│ ├── async-requests.md # Async usage from fetch-http-client-usage-guide.md 21│ ├── promise-operations.md # Promise operations from client-handler docs 22│ ├── retry-handling.md # Retry configuration 23│ ├── file-uploads.md # File upload examples 24│ ├── custom-clients.md # Custom client configuration 25│ └── testing.md # Testing with mock responses 26├── api/ 27│ ├── index.md # API overview 28│ ├── fetch.md # fetch() function reference 29│ ├── fetch-client.md # fetch_client() function reference 30│ ├── http-method-helpers.md # get(), post(), etc. helpers 31│ ├── client.md # Client class API reference 32│ ├── client-handler.md # ClientHandler API reference 33│ ├── request.md # Request API reference 34│ ├── response.md # Response API reference 35│ ├── method-enum.md # Method enum documentation 36│ ├── content-type-enum.md # ContentType enum documentation 37│ └── status-enum.md # Status enum documentation 38└── examples/ 39 ├── index.md # Basic examples 40 ├── api-integration.md # API integration examples 41 ├── async-patterns.md # Advanced async examples 42 ├── error-handling.md # Error handling examples 43 ├── file-handling.md # File upload/download examples 44 └── authentication.md # Authentication examples