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.
- Host: GitHub
- URL: https://github.com/zfl4wless/advent-of-code-2025
- Owner: zFl4wless
- Created: 2025-12-01T00:38:39.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2025-12-03T07:10:05.000Z (7 months ago)
- Last Synced: 2025-12-06T08:44:13.332Z (7 months ago)
- Language: PHP
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.