An open API service indexing awesome lists of open source software.

https://github.com/zfl4wless/advent-of-code-2025

My solutions for Advent of Code 2025 written in PHP.
https://github.com/zfl4wless/advent-of-code-2025

Last synced: 2 months ago
JSON representation

My solutions for Advent of Code 2025 written in PHP.

Awesome Lists containing this project

README

          

# Advent of Code 2025

My solutions for [Advent of Code 2025](https://adventofcode.com/2025) written in PHP.

## Setup

1. Install dependencies:

```bash
composer install
```

2. Run solutions:

```bash
# Run all days
composer solve-all
# or
php run.php

# Run a specific day
composer solve -- 1
# or
php run.php 1

# Run with example input
composer solve -- 1 -e
# or
php run.php 1 -e

# Run directly
php src/Day01/Solution.php
```

## Requirements

- PHP 8.4 or higher
- Composer

## Progress

| Day | Part 1 | Part 2 | Stars |
|---------------------|--------|--------|-------|
| [Day 1](src/Day01) | ⭐️ | ⭐️ | 2/2 |
| [Day 2](src/Day02) | ⭐️ | ⭐️ | 2/2 |
| [Day 3](src/Day03) | ⭐️ | ⭐️ | 2/2 |
| [Day 4](src/Day04) | ⭐️ | ⭐️ | 2/2 |
| [Day 5](src/Day05) | ⭐️ | ⭐️ | 2/2 |
| [Day 6](src/Day06) | ⭐️ | ⭐️ | 2/2 |
| [Day 7](src/Day07) | ⭐️ | ⭐️ | 2/2 |
| [Day 8](src/Day08) | - | - | 0/2 |
| [Day 9](src/Day09) | - | - | 0/2 |
| [Day 10](src/Day10) | - | - | 0/2 |
| [Day 11](src/Day11) | - | - | 0/2 |
| [Day 12](src/Day12) | - | - | 0/2 |

**Total: 14/24 ⭐**

## Notes

Solutions prioritize clarity and readability over performance, unless otherwise required by the puzzle.