2025 Start #2
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@
|
|||||||
2024/rust/target
|
2024/rust/target
|
||||||
2023/rust/target
|
2023/rust/target
|
||||||
*/target
|
*/target
|
||||||
|
2025/vendor
|
||||||
|
|||||||
21
2025/composer.json
Normal file
21
2025/composer.json
Normal 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
18
2025/composer.lock
generated
Normal 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
0
2025/day_1/day_1.php
Normal file
5
2025/index.php
Normal file
5
2025/index.php
Normal 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
2
2025/start.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
!#/usr/bin/env bash
|
||||||
|
php -S localhost:8088 index.php
|
||||||
Loading…
x
Reference in New Issue
Block a user