Compare commits

...

5 Commits

Author SHA1 Message Date
dan
1a822fe8c5 Merge pull request '2025 Start' (#2) from 2025 into main
Reviewed-on: #2
2025-12-08 02:38:08 +00:00
dan612
c6531471f5 More udpates to gitignore and vendor. 2025-12-07 21:36:56 -05:00
dan612
d9f318c45a Remove vendor. 2025-12-07 21:35:23 -05:00
dan612
ba2fe0ea9c More updates. 2025-12-07 21:33:11 -05:00
dan612
8d7fb0f479 Start of 2025 solution. 2025-12-07 21:30:03 -05:00
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