7 Open Issues Need Help Last updated: Jun 28, 2025

Open Issues Need Help

View All on GitHub

AI Summary: Identify and remove unused packages from the Symfony project's composer dependencies using the `composer-unused` tool. This will streamline the project and improve performance.

Complexity: 2/5
good first issue CodeReview

AI Summary: Migrate the Symfony project's service configuration from `services.yaml` to `services.php` to improve IDE autocompletion and performance. This involves transferring all service definitions and configurations from the YAML file to the PHP file.

Complexity: 3/5
good first issue CodeReview

AI Summary: Integrate and configure PHPStan, a static analysis tool, into the Symfony weather application. Aim for level 6 analysis as suggested by Jerem. This involves installing the tool, configuring it within the project, and resolving any reported code issues to improve code quality.

Complexity: 3/5
good first issue CodeReview

AI Summary: Rename four services within a Symfony weather application from their current names to 'Provider'. This involves updating service definitions and potentially any code referencing these services.

Complexity: 2/5
good first issue CodeReview
virer le .DsStore 2 months ago

AI Summary: Remove .DS_Store files from the project. These files are likely being committed despite being in the .gitignore file. The solution involves removing the .DS_Store files, removing the .gitignore exclusion (to test if that's the root cause), committing the changes, and then restoring the .gitignore exclusion.

Complexity: 1/5
good first issue CodeReview
monter en PHP 8.4 2 months ago

AI Summary: Upgrade the Symfony weather application from PHP 8.2 to PHP 8.4. This involves updating the project's dependencies and addressing any compatibility issues that arise due to the PHP version change. The primary motivation is to avoid the deprecation of PHP 8.2.

Complexity: 4/5
good first issue CodeReview

AI Summary: Add `final` and `readonly` modifiers to Data Transfer Objects (DTOs) within a Symfony weather application. This involves preventing DTO classes from being extended using `final` and ensuring their properties can only be set once using `readonly`.

Complexity: 2/5
good first issue CodeReview