{"id":35185536,"url":"https://github.com/devitools/toolkit","last_synced_at":"2026-05-19T08:07:46.575Z","repository":{"id":307552925,"uuid":"1029922057","full_name":"devitools/toolkit","owner":"devitools","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-31T21:42:57.000Z","size":33,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-31T22:45:12.070Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devitools.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-31T19:43:42.000Z","updated_at":"2025-07-31T21:43:01.000Z","dependencies_parsed_at":"2025-08-02T02:46:44.899Z","dependency_job_id":null,"html_url":"https://github.com/devitools/toolkit","commit_stats":null,"previous_names":["devitools/toolkit"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/devitools/toolkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devitools%2Ftoolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devitools%2Ftoolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devitools%2Ftoolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devitools%2Ftoolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devitools","download_url":"https://codeload.github.com/devitools/toolkit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devitools%2Ftoolkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33207654,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-19T07:54:09.561Z","status":"ssl_error","status_checked_at":"2026-05-19T07:54:08.508Z","response_time":58,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-29T04:57:51.155Z","updated_at":"2026-05-19T08:07:46.570Z","avatar_url":"https://github.com/devitools.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧰 Toolkit\n\nA collection of self-contained and useful bash utilities for daily development tasks.\n\n## 📋 Table of Contents\n\n- [Overview](#overview)\n- [Available Tools](#available-tools)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Contributing](#contributing)\n\n## 🎯 Overview\n\n**Toolkit** is a collection of bash scripts that abstract common development tools, making them easier and more intuitive to use. Each tool is self-contained and can be used independently.\n\n## 🛠️ Available Tools\n\n### 🌐 HTTP\nA powerful abstraction over curl to facilitate HTTP requests with advanced features.\n\n**Features:**\n- ✅ Complete HTTP methods (GET, POST, PUT, PATCH, DELETE)\n- ✅ Automatic JWT token authentication\n- ✅ Persistent header management\n- ✅ Automatic JSON colorization\n- ✅ Per-project configuration\n- ✅ Integrated login/logout system\n\n[📖 Complete HTTP documentation](http.md)\n\n### 🐘 PHP\nA Docker abstraction to easily use PHP through containers, with per-project isolation.\n\n**Features:**\n- ✅ PHP execution without local installation\n- ✅ Automatic per-project isolation (based on directory)\n- ✅ Complete container management\n- ✅ Support for Composer, Artisan and other commands\n- ✅ Flexible configuration via environment variables\n- ✅ Detailed logging\n\n[📖 Complete PHP documentation](php.md)\n\n## 🚀 Installation\n\n1. Clone this repository:\n```bash\ngit clone \u003crepository-url\u003e\ncd toolkit\n```\n\n2. Make the scripts executable:\n```bash\nchmod +x http php\n```\n\n3. Add to your PATH (optional):\n```bash\n# Add to your ~/.bashrc or ~/.zshrc\nexport PATH=\"$PATH:/path/to/toolkit\"\n```\n\nOr copy the scripts to a directory already in PATH:\n```bash\ncp http php ~/.local/bin/\n```\n\n## 💡 Usage\n\n### Quick Examples\n\n**HTTP:**\n```bash\n# Configure base host\nhttp setup https://api.example.com\n\n# Login\nhttp login --email user@example.com --password password123\n\n# Simple requests\nhttp get /users\nhttp post /users '{\"name\":\"John\",\"email\":\"john@example.com\"}'\n```\n\n**PHP:**\n```bash\n# Execute PHP directly\nphp -v\n\n# Use Composer\nphp composer install\n\n# Execute Artisan (Laravel)\nphp artisan migrate\n\n# Enter container shell\nphp shell\n```\n\n## 🏗️ Project Structure\n\n```\ntoolkit/\n├── README.md          # This file\n├── http              # HTTP/curl utility\n├── http.md           # HTTP documentation\n├── php               # PHP/Docker utility\n└── php.md            # PHP documentation\n```\n\n## 🎨 Features\n\n- **🔧 Self-contained**: Each tool works independently\n- **🎯 Specific**: Focused on solving specific problems\n- **⚡ Fast**: Efficient execution and quick startup\n- **🖥️ Cross-platform**: Works on macOS and Linux\n- **📝 Well documented**: Each tool has detailed documentation\n- **🔍 Debug-friendly**: Clear logs and error messages\n\n## 🤝 Contributing\n\nContributions are welcome! To contribute:\n\n1. Fork the project\n2. Create a feature branch (`git checkout -b feature/new-tool`)\n3. Commit your changes (`git commit -m 'Add new tool'`)\n4. Push to the branch (`git push origin feature/new-tool`)\n5. Open a Pull Request\n\n### 📋 Guidelines for New Tools\n\n- Must be self-contained (single-file)\n- Include internal help/usage\n- Follow color and output patterns\n- Include markdown documentation\n- Be useful for daily development\n\n## 📄 License\n\nThis project is under the MIT license. See the `LICENSE` file for more details.\n\n## 📞 Support\n\nIf you encounter issues or have suggestions:\n\n1. Check the tool-specific documentation\n2. Open an issue on GitHub\n3. Or contribute improvements via Pull Request\n\n---\n\n**🎉 Made with ❤️ to make daily development easier**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevitools%2Ftoolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevitools%2Ftoolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevitools%2Ftoolkit/lists"}