Skip to content

Commit

Permalink
bump dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tbali0524 committed Jan 1, 2025
1 parent df28002 commit 30b1d97
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: "8.4"
tools: phpcs:3.11, php-cs-fixer:3.65, phpstan:2.0.4
tools: phpcs:3.11, php-cs-fixer:3.66, phpstan:2.1.0
coverage: none
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* php-cs-fixer configuration file.
*
* minimum version: ^3.65
* minimum version: ^3.66
*
* @see https://cs.symfony.com/doc/config.html
*/
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Balint Toth
Copyright (c) 2025 Balint Toth

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion phpdoc.dist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--
PHPDocumentor configuration file.
minimum version: ^3.5
minimum version: ^3.6
@see https://docs.phpdoc.org/guide/references/configuration.html
-->
Expand Down
2 changes: 1 addition & 1 deletion phpstan.dist.neon
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PHPStan configuration file.
#
# minimum version: ^2.0.4
# minimum version: ^2.1.0
#
# @see https://phpstan.org/config-reference
parameters:
Expand Down
2 changes: 1 addition & 1 deletion src/Aoc/AocRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ final class AocRunner
*/
public function __construct(array $args)
{
echo 'Advent of Code - batch solution runner, (c) 2024 by TBali' . PHP_EOL . PHP_EOL;
echo 'Advent of Code - batch solution runner, (c) 2025 by TBali' . PHP_EOL . PHP_EOL;
$this->processArgs($args);
$this->isOk = true;
}
Expand Down
12 changes: 5 additions & 7 deletions src/AocYYYYDayDD.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

declare(strict_types=1);

namespace TBali\Aoc2024;
namespace TBali\AocYYYY;

use TBali\Aoc\SolutionBase;

/**
* AoC 2024 Day 0: CODE SKELETON FOR SOLUTION.
* AoC YYYY Day DD: CODE SKELETON FOR SOLUTION.
*
* @see https://adventofcode.com/2024/day/0
* @see https://adventofcode.com/YYYY/day/DD
*/
final class Aoc2024Day00 extends SolutionBase
final class AocYYYYDayDD extends SolutionBase
{
public const YEAR = 2024;
public const YEAR = 2025;
public const DAY = 0;
public const TITLE = '';
public const SOLUTIONS = [0, 0];
Expand All @@ -31,8 +31,6 @@ final class Aoc2024Day00 extends SolutionBase
public function solve(array $input): array
{
// ---------- Parse input
/** @var array<int, int> */
$data = array_map(intval(...), $input);
// ---------- Part 1
$ans1 = 0;
// ---------- Part 2
Expand Down

0 comments on commit 30b1d97

Please sign in to comment.