feat: initial commit

This commit is contained in:
Cory Dransfeldt 2025-03-27 16:46:02 -07:00
commit be4bda5696
No known key found for this signature in database
254 changed files with 17416 additions and 0 deletions

28
composer.json Normal file
View file

@ -0,0 +1,28 @@
{
"name": "coryd/coryd-dev",
"description": "PHP APIs and server-rendered pages for my personal site.",
"type": "project",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.9",
"kaoken/markdown-it-php": "^14.1",
"sokil/php-isocodes": "^4.2",
"sokil/php-isocodes-db-only": "^4.0"
},
"scripts": {
"start": [
"@php -S localhost:8000 -t dist"
]
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"license": "MIT"
}