I Can't Believe It's More Library Updates!

This commit is contained in:
flash 2023-11-20 19:11:13 +00:00
parent 1419ebf43a
commit a5da4a5236
2 changed files with 15 additions and 4 deletions

8
composer.lock generated
View file

@ -78,7 +78,7 @@
"source": {
"type": "git",
"url": "https://patchii.net/flash/index.git",
"reference": "c563bb20e8dfc046ca3cb4bbcbd682b28f87a88f"
"reference": "e31781c69f0b13fe251771c8e7e529222630a44f"
},
"require": {
"ext-mbstring": "*",
@ -116,7 +116,7 @@
],
"description": "Composer package for the common library for my projects.",
"homepage": "https://railgun.sh/index",
"time": "2023-11-09T14:04:39+00:00"
"time": "2023-11-20T19:01:19+00:00"
},
{
"name": "flashwave/syokuhou",
@ -124,7 +124,7 @@
"source": {
"type": "git",
"url": "https://patchii.net/flash/syokuhou.git",
"reference": "b3470ad8605b0484294c73cd95be6e7ba4551e5a"
"reference": "fdf3c38cc216bf7024af331cbe1758532355c22f"
},
"require": {
"flashwave/index": "dev-master",
@ -155,7 +155,7 @@
],
"description": "Configuration library for PHP.",
"homepage": "https://railgun.sh/syokuhou",
"time": "2023-10-20T21:26:38+00:00"
"time": "2023-11-20T19:10:04+00:00"
},
{
"name": "guzzlehttp/promises",

11
tools/migrate-storage Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env php
<?php
require_once __DIR__ . '/../eeprom.php';
try {
touch(PRM_ROOT . '/.migrating');
chmod(PRM_ROOT . '/.migrating', 0777);
} finally {
unlink(PRM_ROOT . '/.migrating');
}