Merge pull request '2025 Start' (#2) from 2025 into main

Reviewed-on: #2
This commit is contained in:
dan 2025-12-08 02:38:08 +00:00
commit 1a822fe8c5
6 changed files with 47 additions and 0 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
2024/rust/target
2023/rust/target
*/target
2025/vendor

21
2025/composer.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "danchadwick/aoc-2025",
"description": "Advent of code 2025",
"type": "project",
"autoload": {
"psr-4": {
"Aoc2025\\": "src/"
}
},
"authors": [
{
"name": "dan612",
"email": "daniel.chadwick612@gmail.com"
}
],
"minimum-stability": "dev",
"require": {},
"scripts": {
"start": "sh start.sh"
}
}

18
2025/composer.lock generated Normal file
View File

@ -0,0 +1,18 @@
{
"_readme": [
"This file locks the dependencies of your project to a known state",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "27bdc8e2df9841256442f902f4485d9d",
"packages": [],
"packages-dev": [],
"aliases": [],
"minimum-stability": "dev",
"stability-flags": {},
"prefer-stable": false,
"prefer-lowest": false,
"platform": {},
"platform-dev": {},
"plugin-api-version": "2.6.0"
}

0
2025/day_1/day_1.php Normal file
View File

5
2025/index.php Normal file
View File

@ -0,0 +1,5 @@
<?php
require_once __DIR__ . '/vendor/autoload.php';
echo "These are the results of the AoC 2025 challenge:\n";

2
2025/start.sh Normal file
View File

@ -0,0 +1,2 @@
!#/usr/bin/env bash
php -S localhost:8088 index.php