cURL Converter - A tool convert cURL commands to Laravel's HTTP Client

A passionate full-stack developer from @ePlus.DEV
Search for a command to run...

A passionate full-stack developer from @ePlus.DEV
No comments yet. Be the first to comment.
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling.
Laravel Scout is a tool for adding full-text search functionality to your Laravel applications. It uses drivers like Algolia, Meilisearch, SQL, etc
Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary OpenAI giảm mạnh giá GPT-5.6 Luna và Terra, đồng thời chuyển Priority

Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary GitHub Copilot code review đã hỗ trợ chính thức Agent Skills và MCP s

Overview Vibe coding is an emerging software development practice that uses artificial intelligence (AI) to generate functional code from natural language prompts, accelerating development, and making

Overview This lab demonstrates how Gemini can interpret what is in an image and provide a description quickly. During the exercise, you will provide the following image as input and ask Gemini is: "Wh

Overview In a challenge lab you’re given a scenario and a set of tasks. Instead of following step-by-step instructions, you will use the skills learned from the labs in the course to figure out how to

Last week Shift released the cURL Converter. It allows you to quickly convert curl requests to an Http client request. Now all those example API calls you find within documentation can actually be used for your Laravel apps.
For example, take the following curl example from Fathom.
curl https://api.usefathom.com/v1/account
-H "Authorization: Bearer API_TOKEN_HERE"
Shift's cURL Converter outputs its equivalent Http request:
Http::withToken('API_TOKEN_HERE')
->get('https://api.usefathom.com/v1/account');
The underlying code for Shift's cURL Converter is available as a package on GitHub. This package provides an artisan command which wraps curl, allowing you to convert requests to Http code from the command line.
For convenience, Shift also has an online version of the tool. This allows you to quickly paste and convert curl requests. No need to install a Composer package.
If you’re interested in the development of this tool, JMac (Jason McCreary), the creator of Shift, live streamed coding it. You may also check out the laravel-shift/curl-converter repo to review its code or contribute.
Source: