{"id":47680095,"url":"https://github.com/php-fast-forward/dev-tools","last_synced_at":"2026-05-11T22:02:14.966Z","repository":{"id":276305176,"uuid":"925833373","full_name":"php-fast-forward/dev-tools","owner":"php-fast-forward","description":"Fast Forward Development Tools for PHP projects","archived":false,"fork":false,"pushed_at":"2026-05-11T21:29:58.000Z","size":152967,"stargazers_count":0,"open_issues_count":24,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-11T21:36:43.508Z","etag":null,"topics":["code-style","dev","developer-tools","development","devops","faker","grumphp","grumphp-task","php","php-cs-fixer","php-cs-fixer-config","phpdoc","phpdocumentor","phpunit","rector","rectorphp","standards","unit-testing","wiki"],"latest_commit_sha":null,"homepage":"https://php-fast-forward.github.io/dev-tools/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/php-fast-forward.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":"SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null},"funding":{"github":"php-fast-forward","custom":["https://www.paypal.com/donate/?business=JLDAF45XZ8D84"]}},"created_at":"2025-02-01T21:18:05.000Z","updated_at":"2026-05-11T21:28:42.000Z","dependencies_parsed_at":"2025-02-07T13:13:01.322Z","dependency_job_id":"641c6fab-a572-4203-9878-23ded1a9d6b9","html_url":"https://github.com/php-fast-forward/dev-tools","commit_stats":null,"previous_names":["php-fast-forward/code-style","php-fast-forward/dev-tools"],"tags_count":45,"template":false,"template_full_name":null,"purl":"pkg:github/php-fast-forward/dev-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-fast-forward%2Fdev-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-fast-forward%2Fdev-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-fast-forward%2Fdev-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-fast-forward%2Fdev-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/php-fast-forward","download_url":"https://codeload.github.com/php-fast-forward/dev-tools/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/php-fast-forward%2Fdev-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32914533,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-11T17:09:15.040Z","status":"ssl_error","status_checked_at":"2026-05-11T17:08:45.420Z","response_time":120,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["code-style","dev","developer-tools","development","devops","faker","grumphp","grumphp-task","php","php-cs-fixer","php-cs-fixer-config","phpdoc","phpdocumentor","phpunit","rector","rectorphp","standards","unit-testing","wiki"],"created_at":"2026-04-02T13:56:51.598Z","updated_at":"2026-05-11T22:02:14.931Z","avatar_url":"https://github.com/php-fast-forward.png","language":"PHP","funding_links":["https://github.com/sponsors/php-fast-forward","https://www.paypal.com/donate/?business=JLDAF45XZ8D84"],"categories":[],"sub_categories":[],"readme":"# FastForward\\DevTools\n\nA Composer plugin and console toolkit designed to unify and standardize development workflows. Built to provide a seamless interface for PHPUnit, PHP-CS-Fixer, Rector, EasyCodingStandard (ECS), and phpDocumentor.\n\n## ✨ Features\n\n- Aggregates multiple development tools into a single command\n- Automates execution of tests, static analysis, and code styling\n- First-class support for automated refactoring and docblock generation\n- Integrates seamlessly as a Composer plugin without boilerplate\n- Configures default setups for QA tools out of the box\n\n## 🚀 Installation\n\n```bash\ncomposer require --dev fast-forward/dev-tools\n```\n\n## 🛠️ Usage\n\nOnce installed, the plugin automatically exposes the `dev-tools` command via Composer.\n\n```bash\n# Run all standard checks (refactoring, code styling, docs, tests, and reports)\ncomposer dev-tools\n\n# Automatically fix code standards issues where applicable\ncomposer dev-tools:fix\n```\n\nYou can also run individual commands for specific development tasks:\n\n```bash\n# Run PHPUnit tests\ncomposer dev-tools tests\n\n# Check and fix code style using ECS and Composer Normalize\ncomposer dev-tools code-style\n\n# Refactor code using Rector\ncomposer dev-tools refactor\n\n# Check and fix PHPDoc comments\ncomposer dev-tools phpdoc\n\n# Generate HTML API documentation using phpDocumentor\ncomposer dev-tools docs\n\n# Generate Markdown documentation for the wiki\ncomposer dev-tools wiki\n\n# Generate documentation frontpage and related reports\ncomposer dev-tools reports\n\n# Installs and synchronizes dev-tools scripts, GitHub Actions workflows, .editorconfig, and ensures the repository wiki is present as a git submodule in .github/wiki\ncomposer dev-tools:sync\n```\n\n## 📄 License\n\nThis package is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.\n\n## 🔗 Links\n\n- [Repository](https://github.com/php-fast-forward/dev-tools)\n- [Packagist](https://packagist.org/packages/fast-forward/dev-tools)\n- [RFC 2119](https://datatracker.ietf.org/doc/html/rfc2119)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphp-fast-forward%2Fdev-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphp-fast-forward%2Fdev-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphp-fast-forward%2Fdev-tools/lists"}