{"id":36970430,"url":"https://github.com/by-pinja/test-tools-bundle","last_synced_at":"2026-01-13T21:48:09.389Z","repository":{"id":57045331,"uuid":"147773894","full_name":"by-pinja/test-tools-bundle","owner":"by-pinja","description":"Testing and static analysis tools bundle for Symfony projects","archived":true,"fork":false,"pushed_at":"2019-07-06T17:28:48.000Z","size":70,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-08T12:02:49.532Z","etag":null,"topics":["static-analysis","symfony","symfony-bundle","testing","testing-tools"],"latest_commit_sha":null,"homepage":null,"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/by-pinja.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-07T05:16:29.000Z","updated_at":"2025-09-01T05:39:14.000Z","dependencies_parsed_at":"2022-08-24T04:11:22.262Z","dependency_job_id":null,"html_url":"https://github.com/by-pinja/test-tools-bundle","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/by-pinja/test-tools-bundle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/by-pinja%2Ftest-tools-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/by-pinja%2Ftest-tools-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/by-pinja%2Ftest-tools-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/by-pinja%2Ftest-tools-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/by-pinja","download_url":"https://codeload.github.com/by-pinja/test-tools-bundle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/by-pinja%2Ftest-tools-bundle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28401111,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"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":["static-analysis","symfony","symfony-bundle","testing","testing-tools"],"created_at":"2026-01-13T21:48:08.483Z","updated_at":"2026-01-13T21:48:09.384Z","avatar_url":"https://github.com/by-pinja.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# What is this\n\n[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)\n[![Build Status](https://travis-ci.org/protacon/test-tools-bundle.png?branch=master)](https://travis-ci.org/protacon/test-tools-bundle)\n[![Total Downloads](https://poser.pugx.org/protacon/test-tools-bundle/downloads)](https://packagist.org/packages/protacon/test-tools-bundle)\n\nTesting and static analysis tools bundle for Symfony projects\n\n## Table of Contents\n\n* [What is this?](#what-is-this)\n  * [Table of Contents](#table-of-contents)\n  * [Requirements](#requirements)\n  * [Installation](#installation)\n  * [Usage](#usage)\n  * [Development](#development)\n    * [IDE](#ide)\n    * [Testing](#testing)\n  * [Authors](#authors)\n  * [License](#license)\n\n## Requirements\n\n* PHP 7.1 or higher\n* [Composer](https://getcomposer.org/)\n\n## Installation\n\nThe recommended way to install this library is with Composer. Composer is a dependency management \ntool for PHP that allows you to declare the dependencies your project needs and installs them into \nyour project.\n\n```bash\n# Install Composer\ncurl -sS https://getcomposer.org/installer | php\n```\n\nYou can add this library as a dependency to your project using following command:\n\n```bash\ncomposer require protacon/test-tools-bundle\n```\n\n## Usage\n\nBundle exposes few Symfony commands in the `test-tools` namespace you can utilize\n\n```bash\n./bin/console test-tools:init    Initialize test tools\n./bin/console test-tools:check   Check outdated vendor dependencies\n```\n\n## Development\n\n* [PSR-2: Coding Style Guide](http://www.php-fig.org/psr/psr-2/)\n\n### IDE\n\nI highly recommend that you use \"proper\"\n[IDE](https://en.wikipedia.org/wiki/Integrated_development_environment)\nto development your application. Below is short list of some popular IDEs that\nyou could use.\n\n* [PhpStorm](https://www.jetbrains.com/phpstorm/)\n* [NetBeans](https://netbeans.org/)\n* [Sublime Text](https://www.sublimetext.com/)\n* [Visual Studio Code](https://code.visualstudio.com/)\n\nIf you're using [PhpStorm](https://www.jetbrains.com/phpstorm/) following links\nwill help you to get things rolling.\n\n* [Using PHP Code Sniffer Tool](https://www.jetbrains.com/help/phpstorm/10.0/using-php-code-sniffer-tool.html)\n* [PHP Code Sniffer in PhpStorm](https://confluence.jetbrains.com/display/PhpStorm/PHP+Code+Sniffer+in+PhpStorm)\n\n### Testing\n\nLibrary uses [PHPUnit](https://phpunit.de/) for testing. You can run all tests\nby following command:\n\n```bash\n./vendor/bin/phpunit\n```\n\nOr you could easily configure your IDE to run those for you.\n\n### Environment\n\nBundle provides a Dockerfile and docker-compose configuration to develop the bundle in the container with the all tools necessary installed\n\n````bash\ndocker-compose up -d\ndocker-compose exec app sh\n````\n\n## Authors\n\n- [Atte Tarvainen](https://github.com/tarvainen)\n- [Tarmo Leppänen](https://github.com/tarlepp)\n\n## License\n\n[The MIT License (MIT)](LICENSE)\n\nCopyright (c) 2019 Protacon\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fby-pinja%2Ftest-tools-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fby-pinja%2Ftest-tools-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fby-pinja%2Ftest-tools-bundle/lists"}